]> git.karo-electronics.de Git - linux-beck.git/commitdiff
kbuild: Remove reference to uninitialised variable
authorCharles Keepax <ckeepax@opensource.wolfsonmicro.com>
Mon, 15 Oct 2012 12:49:12 +0000 (13:49 +0100)
committerMichal Marek <mmarek@suse.cz>
Tue, 20 Nov 2012 10:25:15 +0000 (11:25 +0100)
Verbose output variable is unnecessary because the command's echo is
already surpressed. Additionally because the block defines skip-makefile
the variable Q is not defined within the makefile, which can cause
problems if Q is defined in the users environment.

Signed-off-by: Charles Keepax <ckeepax@opensource.wolfsonmicro.com>
Signed-off-by: Michal Marek <mmarek@suse.cz>
Makefile

index 5be2ee8c90e4247b90ec1aed9421492226d5f7f8..6744909b345fa2016e0af77514d3e7e3cfcf00df 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -124,7 +124,7 @@ $(if $(KBUILD_OUTPUT),, \
 PHONY += $(MAKECMDGOALS) sub-make
 
 $(filter-out _all sub-make $(CURDIR)/Makefile, $(MAKECMDGOALS)) _all: sub-make
-       $(Q)@:
+       @:
 
 sub-make: FORCE
        $(if $(KBUILD_VERBOSE:1=),@)$(MAKE) -C $(KBUILD_OUTPUT) \