shithub: libvpx

Download patch

ref: a495da1c3cba812efe8cf5dad15342c13ab29fdf
parent: b9f873fc15be679fbe0f1e2313982fd4ac7635a3
parent: 44881a55d34e728450cc5a590c7968ee94cc4ac5
author: James Zern <jzern@google.com>
date: Wed Jan 23 09:47:30 EST 2013

Merge "make: support V=1 as short form of verbose=yes"

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