[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Automake 1.6.1b
From: |
Alexandre Duret-Lutz |
Subject: |
Re: Automake 1.6.1b |
Date: |
Tue, 11 Jun 2002 14:29:57 +0200 |
User-agent: |
Gnus/5.090006 (Oort Gnus v0.06) Emacs/21.2 (i386-debian-linux-gnu) |
>>> "Bernd" == Bernd Jendrissek <address@hidden> writes:
[...]
Bernd> Just running 'make check' on i686-pc-linux-gnu with perl
Bernd> v5.6.1 and generally not-quite redhat-6.1 distro.
Bernd> Result:
Bernd> 1 of 381 tests failed
Bernd> Oops. That was maintclean.test Oh, but I had
Bernd> autoconf-2.52 - re-running 'make check' now.
Bernd> (TESTS=maintclean.test PASSes against 2.53a)
Thanks a lot. I'm checking in the following patch.
2002-06-11 Alexandre Duret-Lutz <address@hidden>
* tests/maintclean.test: Don't check for autom4te.cache if
it's not created by Autoconf.
Reported by Bernd Jendrissek.
Index: THANKS
===================================================================
RCS file: /cvs/automake/automake/THANKS,v
retrieving revision 1.166.2.10
diff -u -r1.166.2.10 THANKS
--- THANKS 10 Jun 2002 10:02:56 -0000 1.166.2.10
+++ THANKS 11 Jun 2002 12:20:53 -0000
@@ -20,7 +20,7 @@
Assar Westerlund address@hidden
Axel Belinfante address@hidden
Bernard Urban address@hidden
-Bernd Jendrissek address@hidden
+Bernd Jendrissek address@hidden
Bill Currie address@hidden
Bill Davidson address@hidden
Bill Fenner address@hidden
Index: tests/maintclean.test
===================================================================
RCS file: /cvs/automake/automake/tests/maintclean.test,v
retrieving revision 1.3.2.2
diff -u -r1.3.2.2 maintclean.test
--- tests/maintclean.test 10 Jun 2002 18:43:14 -0000 1.3.2.2
+++ tests/maintclean.test 11 Jun 2002 12:20:53 -0000
@@ -27,7 +27,12 @@
$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 Makefile
test ! -f config.status
test -f foo.c
-test -d autom4te.cache
+$test_cache
./configure
test -f bar
--
Alexandre Duret-Lutz