From 35bce88fa68ca7048312502723abac2b423ed4f2 Mon Sep 17 00:00:00 2001 From: Kai Germaschewski Date: Wed, 23 Oct 2002 09:59:43 -0500 Subject: 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. --- scripts/Makefile.clean | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts') 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=$@ -- cgit v1.2.3