]> git.ipfire.org Git - thirdparty/automake.git/commitdiff
Avoid running installed automake from 'libtool --help'.
authorRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Fri, 10 Dec 2010 06:39:04 +0000 (07:39 +0100)
committerRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Fri, 10 Dec 2010 06:39:04 +0000 (07:39 +0100)
* tests/subobj9.test: Export AUTOCONF and AUTOMAKE.
Together with fixed Libtool, this fixes check-coverage to not
invoke installed automake.

Signed-off-by: Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
ChangeLog
tests/subobj9.test

index e8864f1256205950e1439880ba9e5d1f9af5f28b..5afdc53e64ad6c2d572ee187fc019a0f2db38854 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2010-12-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
+
+       Avoid running installed automake from 'libtool --help'.
+       * tests/subobj9.test: Export AUTOCONF and AUTOMAKE.
+       Together with fixed Libtool, this fixes check-coverage to not
+       invoke installed automake.
+
 2010-11-25  Stefano Lattarini  <stefano.lattarini@gmail.com>
 
        Fix spurious failures in `silent*.test' for $CC != gcc
index 2045d58e9bcb44f800b1d3f93c9c033ac4025132..83f3a31ef4317cf4f8005994032df8a109b34a76 100755 (executable)
@@ -64,6 +64,9 @@ $AUTOMAKE -a
 # Skip this test on configure errors (e.g., broken C++ compilers).
 ./configure || Exit 77
 
+# Ensure './libtool --help' will use the right tool versions.
+export AUTOCONF AUTOMAKE
+
 # Opportunistically check that --tag=CXX is used when supported.
 if ./libtool --help | grep tag=TAG; then
   $MAKE print >stdout || { cat stdout; Exit 1; }