Makefile fixlet
diff --git a/ChangeLog b/ChangeLog
index 9680ebd..ead89dc 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,8 @@
* Released 1.2e.
+ * Makefile.am: Removed bogus line.
+
Thu Feb 12 22:27:05 1998 Tom Tromey <tromey@cygnus.com>
* automake.in (get_object_extension): Conditionally include .c.o
diff --git a/Makefile.am b/Makefile.am
index 5d47439..b020386 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -30,7 +30,6 @@
## `test -x' is not portable. So we use Perl instead. If Perl
## doesn't exist, then this test is meaningless anyway.
- -rm -rf testSubdir
installcheck-local:
for file in $(pkgdata_SCRIPTS); do \
$(PERL) -e "exit ! -x '$(pkgdatadir)/$$file';" || exit 1; \
diff --git a/Makefile.in b/Makefile.in
index 692ffa1..f3a7615 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -524,7 +524,6 @@
maintainer-clean-generic clean mostlyclean distclean maintainer-clean
- -rm -rf testSubdir
installcheck-local:
for file in $(pkgdata_SCRIPTS); do \
$(PERL) -e "exit ! -x '$(pkgdatadir)/$$file';" || exit 1; \
diff --git a/lib/am/Makefile.am b/lib/am/Makefile.am
index 5d47439..b020386 100644
--- a/lib/am/Makefile.am
+++ b/lib/am/Makefile.am
@@ -30,7 +30,6 @@
## `test -x' is not portable. So we use Perl instead. If Perl
## doesn't exist, then this test is meaningless anyway.
- -rm -rf testSubdir
installcheck-local:
for file in $(pkgdata_SCRIPTS); do \
$(PERL) -e "exit ! -x '$(pkgdatadir)/$$file';" || exit 1; \
diff --git a/tests/ChangeLog b/tests/ChangeLog
index 22bfb0a..7445919 100644
--- a/tests/ChangeLog
+++ b/tests/ChangeLog
@@ -1,3 +1,7 @@
+Fri Feb 13 00:36:38 1998 Tom Tromey <tromey@cygnus.com>
+
+ * Makefile.am (distclean-local): Ignore rm return value.
+
Thu Feb 12 21:00:34 1998 Tom Tromey <tromey@cygnus.com>
* unused.test: New file.
diff --git a/tests/Makefile.am b/tests/Makefile.am
index 3680561..4b4e770 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -33,4 +33,4 @@
EXTRA_DIST = defs $(TESTS)
distclean-local:
- rm -rf testSubdir
+ -rm -rf testSubdir
diff --git a/tests/Makefile.in b/tests/Makefile.in
index 804d73f..c1d851d 100644
--- a/tests/Makefile.in
+++ b/tests/Makefile.in
@@ -210,7 +210,7 @@
distclean-local:
- rm -rf testSubdir
+ -rm -rf testSubdir
# Tell versions [3.59,3.63) of GNU make to not export all variables.
# Otherwise a system limit (for SysV at least) may be exceeded.