ref: 44881a55d34e728450cc5a590c7968ee94cc4ac5
parent: 27825e9e3a70c1d71c2bdea5bd44bf7b4bbb1824
author: Luca Barbato <lu_zero@gentoo.org>
date: Sun Jan 6 14:19:43 EST 2013
make: support V=1 as short form of verbose=yes make V=1 is commonly used for the purpose of trigger verboseness across projects. Change-Id: Id9dfb4a7eea8338b366ae8dadb56ab02ceabbb58
--- a/build/make/Makefile
+++ b/build/make/Makefile
@@ -74,7 +74,7 @@
TGT_ISA:=$(word 1, $(subst -, ,$(TOOLCHAIN)))
TGT_OS:=$(word 2, $(subst -, ,$(TOOLCHAIN)))
TGT_CC:=$(word 3, $(subst -, ,$(TOOLCHAIN)))
-quiet:=$(if $(verbose),,yes)
+quiet:=$(if $(or $(verbose), $(V)),, yes)
qexec=$(if $(quiet),@)
# Cancel built-in implicit rules
--
⑨