diff options
author | Felix Fietkau <nbd@openwrt.org> | 2006-07-18 21:26:56 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2006-07-18 21:26:56 +0000 |
commit | 82271894efbb7f52b2615dbbb36608f8e8f7e1ba (patch) | |
tree | a36741d19127ac2984f28abcd615ae172cfdaaf5 | |
parent | 739e54db938177d4793bfee8c644ea28ba406a59 (diff) | |
download | upstream-82271894efbb7f52b2615dbbb36608f8e8f7e1ba.tar.gz upstream-82271894efbb7f52b2615dbbb36608f8e8f7e1ba.tar.bz2 upstream-82271894efbb7f52b2615dbbb36608f8e8f7e1ba.zip |
accept V= from the environment as well
SVN-Revision: 4159
-rw-r--r-- | openwrt/include/verbose.mk | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/openwrt/include/verbose.mk b/openwrt/include/verbose.mk index da2a21974a..58a20a2178 100644 --- a/openwrt/include/verbose.mk +++ b/openwrt/include/verbose.mk @@ -9,10 +9,7 @@ NO_TRACE_MAKE:=$(MAKE) V=99 ifndef KBUILD_VERBOSE - KBUILD_VERBOSE=0 - ifeq ("$(origin V)", "command line") - KBUILD_VERBOSE=$(V) - endif + KBUILD_VERBOSE=$(V) endif ifneq ($(KBUILD_VERBOSE),99) |