fix KBUILD_VERBOSE if V is unset
SVN-Revision: 4160
This commit is contained in:
parent
82271894ef
commit
e08c8179f6
1 changed files with 4 additions and 1 deletions
|
@ -9,7 +9,10 @@
|
|||
NO_TRACE_MAKE:=$(MAKE) V=99
|
||||
|
||||
ifndef KBUILD_VERBOSE
|
||||
KBUILD_VERBOSE=$(V)
|
||||
KBUILD_VERBOSE=0
|
||||
ifdef V
|
||||
KBUILD_VERBOSE=$(V)
|
||||
endif
|
||||
endif
|
||||
|
||||
ifneq ($(KBUILD_VERBOSE),99)
|
||||
|
|
Loading…
Reference in a new issue