aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Reisner <dreisner@archlinux.org>2012-09-08 11:43:54 -0400
committerDave Reisner <dreisner@archlinux.org>2012-09-08 14:40:37 -0400
commit86bbd0531943bc083b48a891b44d316ab410a971 (patch)
tree8ca67a3612bb286b15ac68001773f457610d61a7
parentcf814054dd9a1f5240bc684769275e40ab81ba6e (diff)
downloadkmod-86bbd0531943bc083b48a891b44d316ab410a971.tar.gz
Makefile: remove redundant flags to $(RM)
$(RM) will always expand to 'rm -f' which means we don't need to ignore errors or pass this flag again.
-rw-r--r--Makefile.am4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am
index 31d5cbb..8e8bcc0 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -201,8 +201,8 @@ testsuite_test_dependencies_LDADD = $(TESTSUITE_LDADD)
testsuite_test_dependencies_CPPFLAGS = $(TESTSUITE_CPPFLAGS)
testsuite-distclean:
- -$(RM) -rf $(ROOTFS)
- -$(RM) testsuite/stamp-rootfs
+ $(RM) -r $(ROOTFS)
+ $(RM) testsuite/stamp-rootfs
DISTCLEAN_LOCAL_HOOKS += testsuite-distclean
EXTRA_DIST += testsuite/rootfs-pristine