From: Masahiro Yamada Date: Tue, 22 May 2018 07:22:18 +0000 (+0900) Subject: kbuild: do not display CHK for filechk X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=e6ecfb45072c98bc3229d79a4a98093677f2a11f;p=linux.git 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 Reviewed-by: Sam Ravnborg --- diff --git a/scripts/Kbuild.include b/scripts/Kbuild.include index 50cee534fd64f..c7fedc5bfd114 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 \