diff options
author | Dave Reisner <dreisner@archlinux.org> | 2011-08-15 13:31:34 -0400 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2011-08-15 13:05:27 -0500 |
commit | 82ffe2cbfd83ca8b5723f4ac1c35e4b9da599106 (patch) | |
tree | 074dc114bf5dd75bf65daf5daf49c9e8d6718561 /doc | |
parent | 1741b5cc30119631940f7b471395765fb6fa7b0f (diff) | |
download | 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 'doc')
-rw-r--r-- | doc/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/Makefile.am b/doc/Makefile.am index d0a3eb51..a9aa78f8 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -148,7 +148,7 @@ pacman.conf.5 pacman.conf.5.html: pacman.conf.5.txt libalpm.3 libalpm.3.html: libalpm.3.txt # this one is just a symlink repo-remove.8: repo-add.8 - rm -f repo-remove.8 + $(RM) repo-remove.8 $(LN_S) repo-add.8 repo-remove.8 install-data-hook: |