From: Luca Barbato Date: Sun, 6 Jan 2013 18:19:43 +0000 (+0100) Subject: make: support V=1 as short form of verbose=yes X-Git-Tag: v1.3.0~1206^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=44881a55d34e728450cc5a590c7968ee94cc4ac5;p=libvpx 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 --- diff --git a/build/make/Makefile b/build/make/Makefile index 92113ccb8..22d6097bf 100644 --- a/build/make/Makefile +++ b/build/make/Makefile @@ -74,7 +74,7 @@ HOSTCC?=gcc 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