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>
pull/7256/head
Damien George 2021-05-12 11:18:16 +10:00
rodzic 87e38b3cc8
commit 300fc842ce
1 zmienionych plików z 1 dodań i 4 usunięć

Wyświetl plik

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