Skip to content

Commit 21ab304

Browse files
committed
py/mkrules.mk: Cleanup command passed to shell.
1 parent 0dc85c9 commit 21ab304

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

py/mkrules.mk

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,11 +83,11 @@ $(OBJ): | $(HEADER_BUILD)/qstrdefs.generated.h $(HEADER_BUILD)/mpversion.h
8383

8484
$(HEADER_BUILD)/qstr.i.last: $(SRC_QSTR) | $(HEADER_BUILD)/mpversion.h
8585
$(ECHO) "GEN $@"
86-
if [ "$?" == "" ]; then \
86+
$(Q)if [ "$?" == "" ]; then \
8787
echo "QSTR Looks like -B used, trying to emulate"; \
88-
$(Q)$(CPP) $(QSTR_GEN_EXTRA_CFLAGS) $(CFLAGS) $^ >$(HEADER_BUILD)/qstr.i.last; \
88+
$(CPP) $(QSTR_GEN_EXTRA_CFLAGS) $(CFLAGS) $^ >$(HEADER_BUILD)/qstr.i.last; \
8989
else \
90-
$(Q)$(CPP) $(QSTR_GEN_EXTRA_CFLAGS) $(CFLAGS) $? >$(HEADER_BUILD)/qstr.i.last; \
90+
$(CPP) $(QSTR_GEN_EXTRA_CFLAGS) $(CFLAGS) $? >$(HEADER_BUILD)/qstr.i.last; \
9191
fi
9292

9393
$(QSTR_DEFS_COLLECTED): $(HEADER_BUILD)/qstr.i.last

0 commit comments

Comments
 (0)