From 2a08d05aa305c9e57bfe563fa4399303475a9684 Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Sat, 22 Jul 2006 12:16:26 +0000 Subject: [PATCH] fix NO_TRACE_MAKE SVN-Revision: 4205 --- openwrt/include/verbose.mk | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/openwrt/include/verbose.mk b/openwrt/include/verbose.mk index 7d9b3979bf..525fbf1c15 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)