Skip to content

Commit

Permalink
kbuild: Remove reference to uninitialised variable
Browse files Browse the repository at this point in the history
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 <[email protected]>
Signed-off-by: Michal Marek <[email protected]>
  • Loading branch information
charleskeepax authored and michal42 committed Nov 20, 2012
1 parent ddffeb8 commit 16f8909
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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) \
Expand Down

0 comments on commit 16f8909

Please sign in to comment.