diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-09-22 14:19:22 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-09-22 14:19:22 +0000 |
commit | 1669b6ed8328600b25fb1ce39a0572da05c0f41c (patch) | |
tree | ef84582394edc3032e7658296d153fdf3ac0b653 | |
parent | 51a61c9011d838db18af16f5f8e294f9e301bad2 (diff) |
- set and export VERBOSE if V= was requested
-rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -64,6 +64,9 @@ endif ifeq ($(KBUILD_VERBOSE),1) quiet= Q= +ifndef VERBOSE + VERBOSE=1 +endif else quiet=quiet_ Q=@ @@ -73,7 +76,7 @@ CONFIG_SHELL:=$(shell if [ -x "$$BASH" ]; then echo $$BASH; \ else if [ -x /bin/bash ]; then echo /bin/bash; \ else echo sh; fi; fi) -export CONFIG_SHELL quiet Q KBUILD_VERBOSE +export CONFIG_SHELL quiet Q KBUILD_VERBOSE VERBOSE ifndef HOSTAR HOSTAR:=ar |