fix NO_TRACE_MAKE
SVN-Revision: 4205
This commit is contained in:
parent
79e9e338c9
commit
2a08d05aa3
1 changed files with 8 additions and 5 deletions
|
@ -6,13 +6,16 @@
|
|||
#
|
||||
# $Id:$
|
||||
|
||||
export NO_TRACE_MAKE:=$(MAKE) V=99
|
||||
ifeq ($(NO_TRACE_MAKE),)
|
||||
NO_TRACE_MAKE := $(MAKE) V=99
|
||||
export NO_TRACE_MAKE
|
||||
endif
|
||||
|
||||
ifndef KBUILD_VERBOSE
|
||||
KBUILD_VERBOSE=0
|
||||
ifeq ("$(origin V)", "command line")
|
||||
KBUILD_VERBOSE=$(V)
|
||||
endif
|
||||
KBUILD_VERBOSE:=0
|
||||
endif
|
||||
ifeq ("$(origin V)", "command line")
|
||||
KBUILD_VERBOSE:=$(V)
|
||||
endif
|
||||
|
||||
ifneq ($(KBUILD_VERBOSE),99)
|
||||
|
|
Loading…
Reference in a new issue