summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorKai Germaschewski <kai@tp1.ruhr-uni-bochum.de>2002-10-23 09:59:43 -0500
committerKai Germaschewski <kai@tp1.ruhr-uni-bochum.de>2002-10-23 09:59:43 -0500
commit35bce88fa68ca7048312502723abac2b423ed4f2 (patch)
treed134253c345d2b1024453607143f322f3b450e48 /scripts
parent4123c52cae69e37501f50b3172ebe81e4032627e (diff)
kbuild: Shut up "make clean" in non-verbose mode
$(call ...) has a measurable performance impact, so use the new variable $(Q), which evaluates to @ when quiet to supress the echoing of commands if not wanted. IIRC, Keith Owens' kbuild-2.5 came up with that idea, so credit goes there.
Diffstat (limited to 'scripts')
-rw-r--r--scripts/Makefile.clean2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/Makefile.clean b/scripts/Makefile.clean
index d7bb2dfb88d8..08ada532a4a1 100644
--- a/scripts/Makefile.clean
+++ b/scripts/Makefile.clean
@@ -38,5 +38,5 @@ endif
.PHONY: $(subdir-ymn)
$(subdir-ymn):
- $(MAKE) -rR -f scripts/Makefile.clean obj=$@
+ $(Q)$(MAKE) -rR -f scripts/Makefile.clean obj=$@