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 --- contrib/Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'contrib/Makefile.am') diff --git a/contrib/Makefile.am b/contrib/Makefile.am index 10b03a2f..be0a4ba3 100644 --- a/contrib/Makefile.am +++ b/contrib/Makefile.am @@ -36,7 +36,7 @@ edit = sed \ $(OURSCRIPTS): Makefile @echo ' ' GEN $@; - @rm -f $@ $@.tmp + @$(RM) $@ $@.tmp @$(edit) $(srcdir)/$@.in >$@.tmp @chmod +x $@.tmp @chmod a-w $@.tmp @@ -44,7 +44,7 @@ $(OURSCRIPTS): Makefile $(OURFILES): Makefile @echo ' ' GEN $@; - @rm -f $@ $@.tmp + @$(RM) $@ $@.tmp @$(edit) $(srcdir)/$@.in >$@.tmp @chmod a-w $@.tmp @mv $@.tmp $@ -- cgit v1.2.3-24-g4f1b