mirror of
https://github.com/tbsdtv/linux_media.git
synced 2025-07-23 20:51:03 +02:00
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>
This commit is contained in:
@@ -57,7 +57,6 @@ kecho := $($(quiet)kecho)
|
|||||||
# to specify a valid file as first prerequisite (often the kbuild file)
|
# to specify a valid file as first prerequisite (often the kbuild file)
|
||||||
define filechk
|
define filechk
|
||||||
$(Q)set -e; \
|
$(Q)set -e; \
|
||||||
$(kecho) ' CHK $@'; \
|
|
||||||
mkdir -p $(dir $@); \
|
mkdir -p $(dir $@); \
|
||||||
$(filechk_$(1)) < $< > $@.tmp; \
|
$(filechk_$(1)) < $< > $@.tmp; \
|
||||||
if [ -r $@ ] && cmp -s $@ $@.tmp; then \
|
if [ -r $@ ] && cmp -s $@ $@.tmp; then \
|
||||||
|
Reference in New Issue
Block a user