summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--testsuite/ChangeLog6
-rw-r--r--testsuite/Makefile.am4
-rw-r--r--testsuite/Makefile.in4
3 files changed, 10 insertions, 4 deletions
diff --git a/testsuite/ChangeLog b/testsuite/ChangeLog
index 4b5a3ce8..d509d558 100644
--- a/testsuite/ChangeLog
+++ b/testsuite/ChangeLog
@@ -1,3 +1,9 @@
+2008-01-29 Frank Ch. Eigler <fche@elastic.org>
+
+ * Makefile.am (clean-local): Allow "rm -rf" to fail due to
+ root-owned .ko files in the local cache.
+ * Makefile.in: Regenerated.
+
2008-01-26 Frank Ch. Eigler <fche@elastic.org>
PR 5673.
diff --git a/testsuite/Makefile.am b/testsuite/Makefile.am
index 6b14bd60..edaaff3c 100644
--- a/testsuite/Makefile.am
+++ b/testsuite/Makefile.am
@@ -8,8 +8,8 @@ all-local:
@echo Run \"make check\" or \"make installcheck\".
clean-local:
- @rm -f ./stap site.exp systemtap.sum systemtap.log
- @rm -rf .systemtap .cache_test
+ -rm -f ./stap site.exp systemtap.sum systemtap.log
+ -rm -rf .systemtap .cache_test 2>/dev/null
installcheck-local: clean site.exp
$(MAKE) AM_RUNTESTFLAGS="--tool_opts install" check-DEJAGNU
diff --git a/testsuite/Makefile.in b/testsuite/Makefile.in
index 8907c519..99acf141 100644
--- a/testsuite/Makefile.in
+++ b/testsuite/Makefile.in
@@ -458,8 +458,8 @@ all-local:
@echo Run \"make check\" or \"make installcheck\".
clean-local:
- @rm -f ./stap site.exp systemtap.sum systemtap.log
- @rm -rf .systemtap .cache_test
+ -rm -f ./stap site.exp systemtap.sum systemtap.log
+ -rm -rf .systemtap .cache_test 2>/dev/null
installcheck-local: clean site.exp
$(MAKE) AM_RUNTESTFLAGS="--tool_opts install" check-DEJAGNU