diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2018-05-22 10:22:18 +0300 |
---|---|---|
committer | Masahiro Yamada <yamada.masahiro@socionext.com> | 2018-05-28 12:25:21 +0300 |
commit | e6ecfb45072c98bc3229d79a4a98093677f2a11f (patch) | |
tree | f61edb8a8014dbe233c698b60a405754b776e7b5 /scripts/Kbuild.include | |
parent | b04e217704b7f879c6b91222b066983a44a7a09f (diff) | |
download | linux-e6ecfb45072c98bc3229d79a4a98093677f2a11f.tar.xz |
kbuild: do not display CHK for filechk
filechk displays two short logs; CHK for creating a temporary file,
and UPD for really updating the target.
IMHO, the build system can be quiet when the target file has not
been updated.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Reviewed-by: Sam Ravnborg <sam@ravnborg.org>
Diffstat (limited to 'scripts/Kbuild.include')
-rw-r--r-- | scripts/Kbuild.include | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/scripts/Kbuild.include b/scripts/Kbuild.include index 50cee534fd64..c7fedc5bfd11 100644 --- a/scripts/Kbuild.include +++ b/scripts/Kbuild.include @@ -57,7 +57,6 @@ kecho := $($(quiet)kecho) # to specify a valid file as first prerequisite (often the kbuild file) define filechk $(Q)set -e; \ - $(kecho) ' CHK $@'; \ mkdir -p $(dir $@); \ $(filechk_$(1)) < $< > $@.tmp; \ if [ -r $@ ] && cmp -s $@ $@.tmp; then \ |