diff options
| author | Felix Fietkau <nbd@openwrt.org> | 2006-07-22 12:16:26 +0000 |
|---|---|---|
| committer | Felix Fietkau <nbd@openwrt.org> | 2006-07-22 12:16:26 +0000 |
| commit | 2a08d05aa305c9e57bfe563fa4399303475a9684 (patch) | |
| tree | b48ac739039a805c602df2b216f41c8f6b270d28 | |
| parent | 79e9e338c958aedde5a0552c71199d3f7e16c74e (diff) | |
| download | mtk-20170518-2a08d05aa305c9e57bfe563fa4399303475a9684.zip mtk-20170518-2a08d05aa305c9e57bfe563fa4399303475a9684.tar.gz mtk-20170518-2a08d05aa305c9e57bfe563fa4399303475a9684.tar.bz2 | |
fix NO_TRACE_MAKE
SVN-Revision: 4205
| -rw-r--r-- | openwrt/include/verbose.mk | 13 |
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) |
