File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -221,7 +221,7 @@ ifeq ($(shell echo $(HOST_PLATFORM) | tr A-Z a-z), batch)
221
221
# assuming that command grouping is not needed in this case, so we just print the commands
222
222
set -o pipefail; \
223
223
if commands=$$( \
224
- $(MAKE) -n EVAL=": xxx" SKIP_GROUP_EVAL_TARGET=true $(MAKECMDGOALS) >$(TARGET_DIR)/commands && \
224
+ $(MAKE) --no-print-directory - n EVAL=": xxx" SKIP_GROUP_EVAL_TARGET=true $(MAKECMDGOALS) >$(TARGET_DIR)/commands && \
225
225
cat $(TARGET_DIR)/commands \
226
226
| perl -e '$$take = 1; \
227
227
while (<>) { \
@@ -242,7 +242,7 @@ ifeq ($(shell echo $(HOST_PLATFORM) | tr A-Z a-z), batch)
242
242
else
243
243
set -o pipefail; \
244
244
if commands=$$( \
245
- $(MAKE) -n EVAL=": xxx" SKIP_GROUP_EVAL_TARGET=true $(MAKECMDGOALS) >$(TARGET_DIR)/commands && \
245
+ $(MAKE) --no-print-directory - n EVAL=": xxx" SKIP_GROUP_EVAL_TARGET=true $(MAKECMDGOALS) >$(TARGET_DIR)/commands && \
246
246
cat $(TARGET_DIR)/commands \
247
247
| perl -e '$$take = 1; \
248
248
while (<>) { \
You can’t perform that action at this time.
0 commit comments