]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
* tests/defs.m4sh, tests/testsuite.at (PREPARE_TESTS)
authorTim Rice <tim@multitalents.net>
Tue, 27 Sep 2005 06:48:22 +0000 (06:48 +0000)
committerRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Tue, 27 Sep 2005 06:48:22 +0000 (06:48 +0000)
<AUTORECONF>: Allow variable override.

ChangeLog
tests/defs.m4sh
tests/testsuite.at

index f9f677171d2616acd2b8855723b89c0e1e35ebf6..f38b8d320588b4d192157e751644df8d95543185 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-09-27  Tim Rice  <tim@multitalents.net>
+
+       * tests/defs.m4sh, tests/testsuite.at (PREPARE_TESTS)
+       <AUTORECONF>: Allow variable override.
+
 2005-09-26  Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
 
        * HACKING: Only update libltdl version info before release.
index ad1f4478b6eea994d9bb29b111bec5c999de5ede..efeee77ca799940f11fd51cb23a700f822d65388 100644 (file)
@@ -31,6 +31,7 @@ $as_unset CDPATH
 m4_include([general.m4sh])
 
 : ${AUTOCONF="autoconf"}
+: ${AUTORECONF="autoreconf"}
 : ${LIBTOOL="./libtool"}
 
 # Sed that helps us avoid accidentally triggering echo(1) options like -n.
@@ -187,7 +188,7 @@ func_configure_nofail ()
 
     func_msg "Configuring in $my_dir"
 
-    test -f "$my_testdir/configure" || autoreconf --force --install $my_testdir
+    test -f "$my_testdir/configure" || ${AUTORECONF} --force --install $my_testdir
     if test -f "$my_testdir/configure"; then
 
       eval func_msg $SHELL "$my_testdir/configure" $my_args
index 8d4196111aeb6d7387fedcfb4170cae3c9fd6948..2ac7c931e002e76bf9b466f0219b7a4f7523a8d5 100644 (file)
@@ -23,7 +23,8 @@ m4_divert_push([PREPARE_TESTS])dnl
 : ${LIBTOOL="${abs_top_builddir}/libtool"}
 : ${ACLOCAL=aclocal}
 : ${AUTOCONF=autoconf}
-export LIBTOOLIZE LIBTOOL ACLOCAL AUTOCONF
+: ${AUTORECONF=autoreconf}
+export LIBTOOLIZE LIBTOOL ACLOCAL AUTOCONF AUTORECONF
 eval `$LIBTOOL --config | grep ^EGREP=`
 eval `$LIBTOOL --config | $EGREP '^(host|host_os|build)='`
 m4_divert_pop([PREPARE_TESTS])dnl
@@ -48,7 +49,7 @@ m4_define([LT_AT_CHECK_LIBTOOLIZE],
 m4_define([LT_AT_BOOTSTRAP],
 [
 test -f ./ltmain.sh || LT_AT_LIBTOOLIZE([--copy])
-test -f ./configure || _lt_pkgdatadir="$abs_top_srcdir" autoreconf --force --verbose --install || exit 1
+test -f ./configure || _lt_pkgdatadir="$abs_top_srcdir" ${AUTORECONF} --force --verbose --install || exit 1
 test -f ./configure || exit 1
 ./configure
 ])