From 82ffe2cbfd83ca8b5723f4ac1c35e4b9da599106 Mon Sep 17 00:00:00 2001 From: Dave Reisner Date: Mon, 15 Aug 2011 13:31:34 -0400 Subject: build-sys: always use $(RM) instead of rm -f These are equivalent. Use the autoconf macro for consistency. Signed-off-by: Dave Reisner Signed-off-by: Dan McGee --- test/pacman/tests/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test') diff --git a/test/pacman/tests/Makefile.am b/test/pacman/tests/Makefile.am index 15720f9b..508534ac 100644 --- a/test/pacman/tests/Makefile.am +++ b/test/pacman/tests/Makefile.am @@ -18,7 +18,7 @@ edit = sed \ $(CONFTESTS): Makefile @echo ' ' GEN $@; - @rm -f $@ $@.tmp + @$(RM) $@ $@.tmp @test -f $(srcdir)/$@.in && $(edit) $(srcdir)/$@.in >$@.tmp || true @test -f $@.tmp || false @chmod a-w $@.tmp -- cgit v1.2.3-24-g4f1b