From cf40f5d19ee8bd41302b3782d00ed4c956b6a81a Mon Sep 17 00:00:00 2001 From: Akim Demaille Date: Tue, 19 Dec 2000 09:25:21 +0000 Subject: [PATCH] Remove duplicate test. --- tests/foreign.at | 33 --------------------------------- 1 file changed, 33 deletions(-) diff --git a/tests/foreign.at b/tests/foreign.at index 6ddd0f54..433dd85d 100644 --- a/tests/foreign.at +++ b/tests/foreign.at @@ -34,36 +34,3 @@ touch install-sh AT_CHECK_CONFIGURE AT_CLEANUP(install-sh ltconfig libtool at-path ltmain.sh config.guess config.sub) -# -*- autoconf -*- - -AT_BANNER([Compatility with other tools.]) - -## -------------------- ## -## Autoconf & Libtool. ## -## -------------------- ## - -AT_SETUP([[Autoconf & Libtool]]) - -# Skip this test if there is no libtoolize. -AT_CHECK([libtoolize --version || exit 77], 0, ignore, ignore) - -# Using a configure.in, have libtoolize confess where libtool.m4 is. -AT_DATA([configure.in], -[[AC_INIT -AC_CONFIG_AUX_DIR(.) -AC_PROG_LIBTOOL -]]) -AT_CHECK([libtoolize >libtoolize.log 2>&1], 0) - -# Build the concatenation of libtool.m4 and configure.in. -cp `sed -n [s,^.*\`\(/[^\']*\)\'.*/\1/p] libtoolize.log` configure.in -cat >>configure.in <<_EOF -AC_INIT -AC_CONFIG_AUX_DIR(.) -AC_PROG_LIBTOOL -_EOF - -AT_CHECK_AUTOCONF -AT_CHECK_CONFIGURE - -AT_CLEANUP(libtoolize.log)