From e6ecfb45072c98bc3229d79a4a98093677f2a11f Mon Sep 17 00:00:00 2001 From: Masahiro Yamada Date: Tue, 22 May 2018 16:22:18 +0900 Subject: 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 --- scripts/Kbuild.include | 1 - 1 file changed, 1 deletion(-) (limited to 'scripts/Kbuild.include') 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 \ -- cgit v1.2.3-59-g8ed1b