1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-07-02 19:43:16 +03:00

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
This commit is contained in:
nbd 2006-07-18 21:28:59 +00:00
parent 6aba533b7b
commit 15f12f44a8

View File

@ -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)