From: Dave Reisner Date: Sat, 8 Sep 2012 15:43:54 +0000 (-0400) Subject: Makefile: remove redundant flags to $(RM) X-Git-Tag: v11~42 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=86bbd0531943bc083b48a891b44d316ab410a971;p=thirdparty%2Fkmod.git 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. --- diff --git a/Makefile.am b/Makefile.am index 31d5cbb1..8e8bcc03 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