From 300fc842cec1d1ef71df95c917374808ae2cafe9 Mon Sep 17 00:00:00 2001 From: Damien George Date: Wed, 12 May 2021 11:18:16 +1000 Subject: [PATCH] py/mkenv.mk: Don't emit info about BUILD_VERBOSE if it's set. If the user sets V or BUILD_VERBOSE then they don't need to see this message. Signed-off-by: Damien George --- py/mkenv.mk | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/py/mkenv.mk b/py/mkenv.mk index 371d320462..d54f0a0d31 100644 --- a/py/mkenv.mk +++ b/py/mkenv.mk @@ -20,6 +20,7 @@ ifeq ("$(origin V)", "command line") BUILD_VERBOSE=$(V) endif ifndef BUILD_VERBOSE +$(info Use make V=1 or set BUILD_VERBOSE in your environment to increase build verbosity.) BUILD_VERBOSE = 0 endif ifeq ($(BUILD_VERBOSE),0) @@ -27,10 +28,6 @@ Q = @ else Q = endif -# Since this is a new feature, advertise it -ifeq ($(BUILD_VERBOSE),0) -$(info Use make V=1 or set BUILD_VERBOSE in your environment to increase build verbosity.) -endif # default settings; can be overridden in main Makefile