diff options
author | Rasmus Villemoes <linux@rasmusvillemoes.dk> | 2020-10-16 15:58:46 +0300 |
---|---|---|
committer | Masahiro Yamada <masahiroy@kernel.org> | 2020-10-20 18:28:53 +0300 |
commit | 8402ee182c417a32d5e5a702f2fa2b01e76dc220 (patch) | |
tree | 65531d7e08cff7b2c2c4e976506284e44a9033d7 /scripts/Kbuild.include | |
parent | 0f6372e522237f39aff63f2e158d629038f26238 (diff) | |
download | linux-8402ee182c417a32d5e5a702f2fa2b01e76dc220.tar.xz |
kbuild: remove leftover comment for filechk utility
After commit 43fee2b23895 ("kbuild: do not redirect the first
prerequisite for filechk"), the rule is no longer automatically passed
$< as stdin, so remove the stale comment.
Fixes: 43fee2b23895 ("kbuild: do not redirect the first prerequisite for filechk")
Signed-off-by: Rasmus Villemoes <linux@rasmusvillemoes.dk>
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Diffstat (limited to 'scripts/Kbuild.include')
-rw-r--r-- | scripts/Kbuild.include | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/scripts/Kbuild.include b/scripts/Kbuild.include index 83a1637417e5..08e011175b4c 100644 --- a/scripts/Kbuild.include +++ b/scripts/Kbuild.include @@ -56,8 +56,6 @@ kecho := $($(quiet)kecho) # - If no file exist it is created # - If the content differ the new file is used # - If they are equal no change, and no timestamp update -# - stdin is piped in from the first prerequisite ($<) so one has -# to specify a valid file as first prerequisite (often the kbuild file) define filechk $(Q)set -e; \ mkdir -p $(dir $@); \ |