]> sourceware.org Git - automake.git/commitdiff
* tests/maintclean.test: Don't check for autom4te.cache if
authorAlexandre Duret-Lutz <adl@gnu.org>
Tue, 11 Jun 2002 12:31:42 +0000 (12:31 +0000)
committerAlexandre Duret-Lutz <adl@gnu.org>
Tue, 11 Jun 2002 12:31:42 +0000 (12:31 +0000)
it's not created by Autoconf.
Reported by Bernd Jendrissek.

ChangeLog
THANKS
tests/maintclean.test

index 482bd0ebb2046c185d95cf2e510243801428e223..2daa260d1f8efe258da7fcfa62f2b4c8e08fc8bf 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2002-06-11  Alexandre Duret-Lutz  <duret_g@epita.fr>
+
+       * tests/maintclean.test: Don't check for autom4te.cache if
+       it's not created by Autoconf.
+       Reported by Bernd Jendrissek.
+
 2002-06-11  Alexandre Duret-Lutz  <duret_g@epita.fr>
 
        * automake.texi (Tests): Document site.exp.  Update DejaGnu's url.
diff --git a/THANKS b/THANKS
index d58a33e1be98df324fe4fa8fdd04ac10f37ea3ec..6f82409524f9ce059fb07591d29544d0b7df6c80 100644 (file)
--- a/THANKS
+++ b/THANKS
@@ -20,7 +20,7 @@ Arkadiusz Miskiewicz  misiek@pld.ORG.PL
 Assar Westerlund       assar@sics.se
 Axel Belinfante                Axel.Belinfante@cs.utwente.nl
 Bernard Urban          Bernard.Urban@meteo.fr
-Bernd Jendrissek       berndj@prism.co.za
+Bernd Jendrissek       berndfoobar@users.sourceforge.net
 Bill Currie            bcurrie@tssc.co.nz
 Bill Davidson          bill@kayhay.com
 Bill Fenner            fenner@parc.xerox.com
index 456b5a3f10e083f2e9c2c5b9fa25504cb32d7969..f4cd7a3027e122fef1de65f407db43e9371e6855 100755 (executable)
@@ -27,7 +27,12 @@ $ACLOCAL
 $AUTOCONF
 $AUTOMAKE
 
-test -d autom4te.cache
+# autom4te.cache appears with Autoconf >= 2.53.
+if test -d autom4te.cache; then
+  test_cache='test -d autom4te.cache'
+else
+  test_cache=:
+fi
 
 # Since we don't require Yacc, make sure it's not used.
 ./configure YACC=false
@@ -41,7 +46,7 @@ test ! -f bar
 test ! -f Makefile
 test ! -f config.status
 test -f foo.c
-test -d autom4te.cache
+$test_cache
 
 ./configure
 test -f bar
This page took 0.033588 seconds and 5 git commands to generate.