diff options
author | Dave Reisner <dreisner@archlinux.org> | 2011-08-15 19:31:34 +0200 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2011-08-15 20:05:27 +0200 |
commit | 82ffe2cbfd83ca8b5723f4ac1c35e4b9da599106 (patch) | |
tree | 074dc114bf5dd75bf65daf5daf49c9e8d6718561 /contrib | |
parent | 1741b5cc30119631940f7b471395765fb6fa7b0f (diff) | |
download | pacman-82ffe2cbfd83ca8b5723f4ac1c35e4b9da599106.tar.gz pacman-82ffe2cbfd83ca8b5723f4ac1c35e4b9da599106.tar.xz |
build-sys: always use $(RM) instead of rm -f
These are equivalent. Use the autoconf macro for consistency.
Signed-off-by: Dave Reisner <dreisner@archlinux.org>
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
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 $@ |