Skip to content

Commit 720d23f

Browse files
kmk324marco-ippolito
authored andcommitted
build: fix make errors that occur in Makefile
fix make errors that occur in coverage-clean case and coverage-test in Makefile PR-URL: #55287 Reviewed-By: LiviaMedeiros <[email protected]> Reviewed-By: Luigi Pinca <[email protected]>
1 parent de8de54 commit 720d23f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ coverage-clean:
240240
$(RM) -r coverage/tmp
241241
@if [ -d "out/Release/obj.target" ]; then \
242242
$(FIND) out/$(BUILDTYPE)/obj.target \( -name "*.gcda" -o -name "*.gcno" \) \
243-
-type f -exec $(RM) {};\
243+
-type f | xargs $(RM); \
244244
fi
245245

246246
.PHONY: coverage
@@ -266,7 +266,7 @@ coverage-build-js:
266266
.PHONY: coverage-test
267267
coverage-test: coverage-build
268268
@if [ -d "out/Release/obj.target" ]; then \
269-
$(FIND) out/$(BUILDTYPE)/obj.target -name "*.gcda" -type f -exec $(RM) {}; \
269+
$(FIND) out/$(BUILDTYPE)/obj.target -name "*.gcda" -type f | xargs $(RM); \
270270
fi
271271
-NODE_V8_COVERAGE=coverage/tmp \
272272
TEST_CI_ARGS="$(TEST_CI_ARGS) --type=coverage" $(MAKE) $(COVTESTS)

0 commit comments

Comments
 (0)