From 44881a55d34e728450cc5a590c7968ee94cc4ac5 Mon Sep 17 00:00:00 2001 From: Luca Barbato Date: Sun, 6 Jan 2013 19:19:43 +0100 Subject: [PATCH] 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 --- build/make/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.40.0