From 97893ad738dfe3308d7e9793c301f24e6c9dc3a4 Mon Sep 17 00:00:00 2001 From: Arseny Kapoulkine Date: Sat, 1 Nov 2014 08:59:49 +0100 Subject: Fix first-time make config=coverage test Not sure why xargs -r is not the default... --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index d351e0f..457dd23 100644 --- a/Makefile +++ b/Makefile @@ -30,7 +30,7 @@ all: $(EXECUTABLE) ifeq ($(config),coverage) test: $(EXECUTABLE) - @find $(BUILD) -name '*.gcda' | xargs rm + @find $(BUILD) -name '*.gcda' | xargs -r rm ./$(EXECUTABLE) @gcov -b -c $(BUILD)/src/pugixml.cpp.gcda | sed -e '/./{H;$!d;}' -e 'x;/pugixml.cpp/!d;' @ls *.gcov | grep -v pugixml.cpp.gcov | xargs rm @@ -51,4 +51,4 @@ $(BUILD)/%.o: % -include $(OBJECTS:.o=.d) -.PHONY: all test clean \ No newline at end of file +.PHONY: all test clean -- cgit v1.2.3