]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
* tests/foreign.at (Autoconf & Libtool): `configure.in', not `.ac'
authorAkim Demaille <akim@epita.fr>
Thu, 18 Jan 2001 13:16:02 +0000 (13:16 +0000)
committerAkim Demaille <akim@epita.fr>
Thu, 18 Jan 2001 13:16:02 +0000 (13:16 +0000)
since Libtool does not yet support it.
Let the test suite be more verbose about at-path.
From Patrick Welche.

ChangeLog
THANKS
tests/foreign.at

index 3347bcb9536630497baf2c75234bb17abfc22bbd..2707a36658b18fa6039780674c0280c0ea66e556 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2001-01-18  Akim Demaille  <akim@epita.fr>
+
+       * tests/foreign.at (Autoconf & Libtool): `configure.in', not `.ac'
+       since Libtool does not yet support it.
+       Let the test suite be more verbose about at-path.
+       From Patrick Welche.
+
 2001-01-18  Akim Demaille  <akim@epita.fr>
 
        * tests/atspecific.m4 (AT_CHECK_DEFINES): Discard
diff --git a/THANKS b/THANKS
index 21ed02c442fa6bcad166c141c1f77c9f2daecac4..e52e6600a2c57b15b0d79660aba891ecf0a73107 100644 (file)
--- a/THANKS
+++ b/THANKS
@@ -105,6 +105,7 @@ Noah Elliott                elliott@hera.llnl.gov
 Noah Friedman          friedman@gnu.ai.mit.edu
 Ossama Othman          ossama@debian.org
 Patrick Tullmann       tullmann@cs.utah.edu
+Patrick Welche         prlw1@newn.cam.ac.uk
 Paul Berrevoets                paul@swi.com
 Paul Eggert            eggert@twinsun.com
 Paul Gampe             paulg@apnic.net
index cb8d22069a768e5fb8cbd1acb8aa31c552d2fbff..969a15912646d6ce9685ae8e37a9334564ee37a2 100644 (file)
@@ -15,8 +15,9 @@ AT_CHECK([libtoolize --version || exit 77],
 AT_CHECK([[libtoolize --version | grep '1.3.[012345]' && exit 77]],
          ignore, ignore, ignore)
 
-# Using a configure.ac, have libtoolize confess where libtool.m4 is.
-AT_DATA([configure.ac],
+# FIXME: Once Libtool `configure.ac' aware, change this.
+# Using a configure.in, have libtoolize confess where libtool.m4 is.
+AT_DATA([configure.in],
 [[AC_INIT
 AC_CONFIG_AUX_DIR(.)
 AC_PROG_LIBTOOL
@@ -24,9 +25,15 @@ AC_PROG_LIBTOOL
 AT_CHECK([libtoolize | sed -n ["s,^.*\`\(/[^']*\)'.*,\1,p"] >at-path],
          0, [], ignore)
 
+# Make sure at-path contains something valid, and let the test suite
+# display it when verbose.  And fail, skipping would too easily hide
+# problems.
+AT_CHECK([grep . at-path], 0, [ignore])
+AT_CHECK([test -f "`cat at-path`"])
+
 # Build the concatenation of libtool.m4 and configure.ac.
-cp `cat at-path` configure.ac
-cat >>configure.ac <<_EOF
+cp `cat at-path` configure.in
+cat >>configure.in <<_EOF
 AC_INIT
 AC_CONFIG_AUX_DIR(.)
 AC_PROG_LIBTOOL