From e08c8179f6058a9e0b63fd0e5428720fe0093a6f Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Tue, 18 Jul 2006 21:28:59 +0000 Subject: [PATCH] fix KBUILD_VERBOSE if V is unset SVN-Revision: 4160 --- openwrt/include/verbose.mk | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/openwrt/include/verbose.mk b/openwrt/include/verbose.mk index 58a20a2178..16a75c08c9 100644 --- a/openwrt/include/verbose.mk +++ b/openwrt/include/verbose.mk @@ -9,7 +9,10 @@ NO_TRACE_MAKE:=$(MAKE) V=99 ifndef KBUILD_VERBOSE - KBUILD_VERBOSE=$(V) + KBUILD_VERBOSE=0 + ifdef V + KBUILD_VERBOSE=$(V) + endif endif ifneq ($(KBUILD_VERBOSE),99) -- 2.30.2