Skip to content

Commit a828b99

Browse files
committed
esp32/Makefile: Use $(Q) prefix on all commands.
This prevents printing the lengthy command and makes the build output a little cleaner. Signed-off-by: Damien George <[email protected]>
1 parent 50da085 commit a828b99

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

ports/esp32/Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -70,12 +70,12 @@ endif
7070
HELP_BUILD_ERROR ?= "See \033[1;31mhttps://github.com/micropython/micropython/wiki/Build-Troubleshooting\033[0m"
7171

7272
define RUN_IDF_PY
73-
idf.py $(IDFPY_FLAGS) -B $(BUILD) $(1)
73+
$(Q)idf.py $(IDFPY_FLAGS) -B $(BUILD) $(1)
7474
endef
7575

7676
all:
77-
idf.py $(IDFPY_FLAGS) -B $(BUILD) build || (echo -e $(HELP_BUILD_ERROR); false)
78-
@$(PYTHON) makeimg.py \
77+
$(Q)idf.py $(IDFPY_FLAGS) -B $(BUILD) build || (echo -e $(HELP_BUILD_ERROR); false)
78+
$(Q)$(PYTHON) makeimg.py \
7979
$(BUILD)/sdkconfig \
8080
$(BUILD)/bootloader/bootloader.bin \
8181
$(BUILD)/partition_table/partition-table.bin \
@@ -112,4 +112,4 @@ size-files:
112112
# This is done in a dedicated build directory as some CMake cache values are not
113113
# set correctly if not all submodules are loaded yet.
114114
submodules:
115-
IDF_COMPONENT_MANAGER=0 idf.py $(IDFPY_FLAGS) -B $(BUILD)/submodules -D UPDATE_SUBMODULES=1 reconfigure
115+
$(Q)IDF_COMPONENT_MANAGER=0 idf.py $(IDFPY_FLAGS) -B $(BUILD)/submodules -D UPDATE_SUBMODULES=1 reconfigure

0 commit comments

Comments
 (0)