aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorCharles Keepax <ckeepax@opensource.wolfsonmicro.com>2012-10-15 08:49:12 -0400
committerMichal Marek <mmarek@suse.cz>2012-11-20 05:25:15 -0500
commit16f890988114a1b2d7abb30dafb708d4513801da (patch)
treedd42342025ac7b7ef001e0531a6ea1ece544bb50 /Makefile
parentddffeb8c4d0331609ef2581d84de4d763607bd37 (diff)
kbuild: Remove reference to uninitialised variable
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>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 5be2ee8c90e4..6744909b345f 100644
--- a/Makefile
+++ b/Makefile
@@ -124,7 +124,7 @@ $(if $(KBUILD_OUTPUT),, \
124PHONY += $(MAKECMDGOALS) sub-make 124PHONY += $(MAKECMDGOALS) sub-make
125 125
126$(filter-out _all sub-make $(CURDIR)/Makefile, $(MAKECMDGOALS)) _all: sub-make 126$(filter-out _all sub-make $(CURDIR)/Makefile, $(MAKECMDGOALS)) _all: sub-make
127 $(Q)@: 127 @:
128 128
129sub-make: FORCE 129sub-make: FORCE
130 $(if $(KBUILD_VERBOSE:1=),@)$(MAKE) -C $(KBUILD_OUTPUT) \ 130 $(if $(KBUILD_VERBOSE:1=),@)$(MAKE) -C $(KBUILD_OUTPUT) \