aboutsummaryrefslogtreecommitdiff
path: root/py/mkenv.mk
diff options
context:
space:
mode:
authorDamien George <damien@micropython.org>2021-05-12 11:18:16 +1000
committerDamien George <damien@micropython.org>2021-05-12 13:22:13 +1000
commit300fc842cec1d1ef71df95c917374808ae2cafe9 (patch)
tree29d8011fcf0b87d12625db3f3c0d5c2271311fa5 /py/mkenv.mk
parent87e38b3cc83be7297957b5ec9b701769ffe2d6e3 (diff)
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 <damien@micropython.org>
Diffstat (limited to 'py/mkenv.mk')
-rw-r--r--py/mkenv.mk5
1 files changed, 1 insertions, 4 deletions
diff --git a/py/mkenv.mk b/py/mkenv.mk
index 371d32046..d54f0a0d3 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