From: Tom Tromey Date: Fri, 13 Feb 1998 07:38:26 +0000 (+0000) Subject: Makefile fixlet X-Git-Tag: Release-1-2e^0 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3843d6429468d665adbbe3b846e715324e12a858;p=thirdparty%2Fautomake.git Makefile fixlet --- diff --git a/ChangeLog b/ChangeLog index 9680ebd8e..ead89dc9f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -2,6 +2,8 @@ Fri Feb 13 00:28:53 1998 Tom Tromey * Released 1.2e. + * Makefile.am: Removed bogus line. + Thu Feb 12 22:27:05 1998 Tom Tromey * automake.in (get_object_extension): Conditionally include .c.o diff --git a/Makefile.am b/Makefile.am index 5d47439a1..b0203864f 100644 --- a/Makefile.am +++ b/Makefile.am @@ -30,7 +30,6 @@ TAGS_DEPENDENCIES = automake.in aclocal.in automake.texi ## `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 692ffa1d7..f3a76159a 100644 --- a/Makefile.in +++ b/Makefile.in @@ -524,7 +524,6 @@ installdirs mostlyclean-generic distclean-generic clean-generic \ 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 5d47439a1..b0203864f 100644 --- a/lib/am/Makefile.am +++ b/lib/am/Makefile.am @@ -30,7 +30,6 @@ TAGS_DEPENDENCIES = automake.in aclocal.in automake.texi ## `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 22bfb0a72..74459190d 100644 --- a/tests/ChangeLog +++ b/tests/ChangeLog @@ -1,3 +1,7 @@ +Fri Feb 13 00:36:38 1998 Tom Tromey + + * Makefile.am (distclean-local): Ignore rm return value. + Thu Feb 12 21:00:34 1998 Tom Tromey * unused.test: New file. diff --git a/tests/Makefile.am b/tests/Makefile.am index 3680561cf..4b4e770c3 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -33,4 +33,4 @@ whoami.test unused.test EXTRA_DIST = defs $(TESTS) distclean-local: - rm -rf testSubdir + -rm -rf testSubdir diff --git a/tests/Makefile.in b/tests/Makefile.in index 804d73fd9..c1d851db9 100644 --- a/tests/Makefile.in +++ b/tests/Makefile.in @@ -210,7 +210,7 @@ maintainer-clean-generic clean mostlyclean distclean maintainer-clean 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.