diff options
| author | Felix Fietkau <nbd@openwrt.org> | 2006-07-18 21:28:59 +0000 |
|---|---|---|
| committer | Felix Fietkau <nbd@openwrt.org> | 2006-07-18 21:28:59 +0000 |
| commit | e08c8179f6058a9e0b63fd0e5428720fe0093a6f (patch) | |
| tree | 7b0b283f1e79d5ea0b172c00dc348070637c33cb | |
| parent | 82271894efbb7f52b2615dbbb36608f8e8f7e1ba (diff) | |
| download | mtk-20170518-e08c8179f6058a9e0b63fd0e5428720fe0093a6f.zip mtk-20170518-e08c8179f6058a9e0b63fd0e5428720fe0093a6f.tar.gz mtk-20170518-e08c8179f6058a9e0b63fd0e5428720fe0093a6f.tar.bz2 | |
fix KBUILD_VERBOSE if V is unset
SVN-Revision: 4160
| -rw-r--r-- | openwrt/include/verbose.mk | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/openwrt/include/verbose.mk b/openwrt/include/verbose.mk index 58a20a2..16a75c0 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) |
