Browse Source

build: Use 'rm -f' instead of implicit GNU make RM variable

Guillem Jover 10 years ago
parent
commit
c8ea9114c5
1 changed files with 2 additions and 2 deletions
  1. 2 2
      Makefile.am

+ 2 - 2
Makefile.am

@@ -100,8 +100,8 @@ LCOV_CAPTURE_OPTS = $(LCOV_OPTS) --no-recursion \
 	-d $(top_builddir)/utils
 
 coverage: all
-	$(RM) -f *.lcov
-	find -name '*.gcda' -o -name '*.gcov' | xargs $(RM) -f
+	rm -f *.lcov
+	find -name '*.gcda' -o -name '*.gcov' | xargs rm -f
 
 	$(LCOV) $(LCOV_CAPTURE_OPTS) -c -o dpkg_base.lcov -i
 	$(MAKE) -C lib/dpkg check