Fix first-time make config=coverage test

Not sure why xargs -r is not the default...
This commit is contained in:
Arseny Kapoulkine 2014-11-01 08:59:49 +01:00
parent 21cff3bca2
commit 97893ad738

View file

@ -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
.PHONY: all test clean