From 86bbd0531943bc083b48a891b44d316ab410a971 Mon Sep 17 00:00:00 2001 From: Dave Reisner Date: Sat, 8 Sep 2012 11:43:54 -0400 Subject: [PATCH] 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. --- Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 2.47.2