projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
avoid using a reserved word as a variable name
[openwrt.git]
/
include
/
verbose.mk
diff --git
a/include/verbose.mk
b/include/verbose.mk
index
16a75c0
..
525fbf1
100644
(file)
--- a/
include/verbose.mk
+++ b/
include/verbose.mk
@@
-6,13
+6,16
@@
#
# $Id:$
#
# $Id:$
-NO_TRACE_MAKE:=$(MAKE) V=99
+ifeq ($(NO_TRACE_MAKE),)
+NO_TRACE_MAKE := $(MAKE) V=99
+export NO_TRACE_MAKE
+endif
ifndef KBUILD_VERBOSE
ifndef KBUILD_VERBOSE
- KBUILD_VERBOSE=0
- ifdef V
-
KBUILD_VERBOSE=$(V
)
- endif
+ KBUILD_VERBOSE
:
=0
+endif
+
ifeq ("$(origin V)", "command line"
)
+ KBUILD_VERBOSE:=$(V)
endif
ifneq ($(KBUILD_VERBOSE),99)
endif
ifneq ($(KBUILD_VERBOSE),99)
@@
-32,6
+35,4
@@
ifneq ($(KBUILD_VERBOSE),99)
endif
.SILENT: $(MAKECMDGOALS)
endif
.SILENT: $(MAKECMDGOALS)
-else
- NO_TRACE_MAKE:=$(MAKE)
endif
endif
This page took
0.021693 seconds
and
4
git commands to generate.