summaryrefslogtreecommitdiff
path: root/openwrt
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2006-07-22 12:16:26 +0000
committerFelix Fietkau <nbd@openwrt.org>2006-07-22 12:16:26 +0000
commit2a08d05aa305c9e57bfe563fa4399303475a9684 (patch)
treeb48ac739039a805c602df2b216f41c8f6b270d28 /openwrt
parent79e9e338c958aedde5a0552c71199d3f7e16c74e (diff)
downloadmtk-20170518-2a08d05aa305c9e57bfe563fa4399303475a9684.zip
mtk-20170518-2a08d05aa305c9e57bfe563fa4399303475a9684.tar.gz
mtk-20170518-2a08d05aa305c9e57bfe563fa4399303475a9684.tar.bz2
fix NO_TRACE_MAKE
SVN-Revision: 4205
Diffstat (limited to 'openwrt')
-rw-r--r--openwrt/include/verbose.mk13
1 files changed, 8 insertions, 5 deletions
diff --git a/openwrt/include/verbose.mk b/openwrt/include/verbose.mk
index 7d9b397..525fbf1 100644
--- a/openwrt/include/verbose.mk
+++ b/openwrt/include/verbose.mk
@@ -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)