kbuild: remove leftover comment for filechk utility
authorRasmus Villemoes <linux@rasmusvillemoes.dk>
Fri, 16 Oct 2020 12:58:46 +0000 (14:58 +0200)
committerMasahiro Yamada <masahiroy@kernel.org>
Tue, 20 Oct 2020 15:28:53 +0000 (00:28 +0900)
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>
scripts/Kbuild.include

index 83a1637..08e0111 100644 (file)
@@ -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 $@);                                     \