From: nbd Date: Tue, 18 Jul 2006 21:28:59 +0000 (+0000) Subject: fix KBUILD_VERBOSE if V is unset X-Git-Tag: fast2504n-3.10.28-merged~22942^2~415 X-Git-Url: https://git.enpas.org/?a=commitdiff_plain;h=15f12f44a82318e411610fce61f404a2653ca267;hp=6aba533b7b0766282848b7551efbfc32f2a0d37c;p=openwrt.git fix KBUILD_VERBOSE if V is unset git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4160 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/include/verbose.mk b/include/verbose.mk index 58a20a2178..16a75c08c9 100644 --- a/include/verbose.mk +++ b/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)