From: Tom Tromey Date: Sat, 26 Sep 1998 19:06:21 +0000 (+0000) Subject: * aclocal.test: Put AM_INIT_AUTOMAKE into configure.in. X-Git-Tag: Release-1-3d~81 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1de3ff4766cbadd87f57d5f4bacc35ed5b47f644;p=thirdparty%2Fautomake.git * aclocal.test: Put AM_INIT_AUTOMAKE into configure.in. * library.test: Use AC_EXEEXT. * texinfo5.test: Use AC_EXEEXT. * Many files: use AC_PROG_INSTALL, not AM_PROG_INSTALL. --- diff --git a/tests/ChangeLog b/tests/ChangeLog index 6031cd5ae..fbdaf8c29 100644 --- a/tests/ChangeLog +++ b/tests/ChangeLog @@ -1,5 +1,10 @@ Sat Sep 26 19:17:43 1998 Tom Tromey + * aclocal.test: Put AM_INIT_AUTOMAKE into configure.in. + * library.test: Use AC_EXEEXT. + * texinfo5.test: Use AC_EXEEXT. + * Many files: use AC_PROG_INSTALL, not AM_PROG_INSTALL. + Test suite updates for the @SHELL@ change: * exsource.test: Set SHELL on `make' command line. * ansi.test: Set SHELL on `make' command line. diff --git a/tests/aclocal.test b/tests/aclocal.test index 3b423b64b..7192fdaad 100755 --- a/tests/aclocal.test +++ b/tests/aclocal.test @@ -4,5 +4,8 @@ # Alexandre Oliva. . $srcdir/defs || exit 1 +# configure.in has to have some macro that aclocal can find. +echo 'AM_INIT_AUTOMAKE' >> configure.in + $ACLOCAL --output=fred || exit 1 test -f fred diff --git a/tests/conf2.test b/tests/conf2.test index 31fa6f004..52a02650c 100755 --- a/tests/conf2.test +++ b/tests/conf2.test @@ -10,7 +10,7 @@ PACKAGE=nonesuch VERSION=nonesuch AC_PROG_CC AC_ARG_PROGRAM -AM_PROG_INSTALL +AC_PROG_INSTALL AC_OUTPUT(Makefile) END diff --git a/tests/confsub.test b/tests/confsub.test index 8108309d3..d7ba30f80 100755 --- a/tests/confsub.test +++ b/tests/confsub.test @@ -11,7 +11,7 @@ PACKAGE=nonesuch VERSION=nonesuch AC_PROG_CC AC_ARG_PROGRAM -AM_PROG_INSTALL +AC_PROG_INSTALL AC_OUTPUT(Makefile subdir/Makefile) END diff --git a/tests/defs b/tests/defs index f208153d9..d21540a71 100644 --- a/tests/defs +++ b/tests/defs @@ -28,7 +28,7 @@ cat > configure.in << 'END' PACKAGE=nonesuch VERSION=nonesuch AC_ARG_PROGRAM -AM_PROG_INSTALL +AC_PROG_INSTALL AC_OUTPUT(Makefile) END diff --git a/tests/depend2.test b/tests/depend2.test index 7f08c65a2..897816553 100755 --- a/tests/depend2.test +++ b/tests/depend2.test @@ -11,7 +11,7 @@ PACKAGE=nonesuch VERSION=nonesuch AC_ARG_PROGRAM AC_PROG_MAKE_SET -AM_PROG_INSTALL +AC_PROG_INSTALL AC_PROG_CC AC_OUTPUT(Makefile src/Makefile) END diff --git a/tests/depend3.test b/tests/depend3.test index 53ed9fc23..7ff4909ce 100755 --- a/tests/depend3.test +++ b/tests/depend3.test @@ -8,7 +8,7 @@ cat > configure.in << 'END' PACKAGE=nonesuch VERSION=nonesuch AC_ARG_PROGRAM -AM_PROG_INSTALL +AC_PROG_INSTALL AC_PROG_CC AC_SUBST(DEPS) AC_OUTPUT(Makefile) diff --git a/tests/fpinst2.test b/tests/fpinst2.test index dfa23c2de..ed814cb84 100755 --- a/tests/fpinst2.test +++ b/tests/fpinst2.test @@ -1,6 +1,6 @@ #! /bin/sh -# Test to make sure "reversed" order of AM_PROG_INSTALL and +# Test to make sure "reversed" order of AC_PROG_INSTALL and # AC_PROG_INSTALL is not buggy. . $srcdir/defs || exit 1 @@ -9,7 +9,7 @@ cat > configure.in << 'END' PACKAGE=nonesuch VERSION=nonesuch AC_ARG_PROGRAM -AM_PROG_INSTALL +AC_PROG_INSTALL AC_PROG_INSTALL AC_OUTPUT(Makefile) END diff --git a/tests/fpinstall.test b/tests/fpinstall.test index 001b4235f..d5ed8f47d 100755 --- a/tests/fpinstall.test +++ b/tests/fpinstall.test @@ -1,6 +1,6 @@ #! /bin/sh -# Test for bug reported by Thomas Morgan. If both AM_PROG_INSTALL and +# Test for bug reported by Thomas Morgan. If both AC_PROG_INSTALL and # AC_PROG_INSTALL appear in configure.in, bad error results. . $srcdir/defs || exit 1 @@ -10,7 +10,7 @@ PACKAGE=nonesuch VERSION=nonesuch AC_ARG_PROGRAM AC_PROG_INSTALL -AM_PROG_INSTALL +AC_PROG_INSTALL AC_OUTPUT(Makefile) END diff --git a/tests/gnits.test b/tests/gnits.test index 386680467..e4243be3d 100755 --- a/tests/gnits.test +++ b/tests/gnits.test @@ -8,7 +8,7 @@ cat > configure.in << 'END' PACKAGE=nonesuch VERSION=3.5.3.2 AC_ARG_PROGRAM -AM_PROG_INSTALL +AC_PROG_INSTALL AC_OUTPUT(Makefile) END diff --git a/tests/library.test b/tests/library.test index 0dcbcea5a..baf610908 100755 --- a/tests/library.test +++ b/tests/library.test @@ -7,7 +7,7 @@ cat >> configure.in << 'END' AC_PROG_RANLIB AM_MAINTAINER_MODE -AM_EXEEXT +AC_EXEEXT AC_PROG_CC END diff --git a/tests/package.test b/tests/package.test index a7f4852a2..f920d7e6f 100755 --- a/tests/package.test +++ b/tests/package.test @@ -6,7 +6,7 @@ cat > configure.in << 'END' AC_ARG_PROGRAM -AM_PROG_INSTALL +AC_PROG_INSTALL AC_OUTPUT(Makefile) END diff --git a/tests/proginst.test b/tests/proginst.test index 806543789..1a3d1064d 100755 --- a/tests/proginst.test +++ b/tests/proginst.test @@ -1,7 +1,7 @@ #! /bin/sh # Test for bug where when multiple scripts are installed, -# the check for AM_PROG_INSTALL fails. +# the check for AC_PROG_INSTALL fails. . $srcdir/defs || exit 1 diff --git a/tests/scripts.test b/tests/scripts.test index 7ef1b021c..6f7c15ad1 100755 --- a/tests/scripts.test +++ b/tests/scripts.test @@ -1,7 +1,7 @@ #! /bin/sh # Test for bug reported by Jim Meyering. -# AM_PROG_INSTALL was required when only noinst_SCRIPTS was defined. +# AC_PROG_INSTALL was required when only noinst_SCRIPTS was defined. . $srcdir/defs || exit 1 diff --git a/tests/stamph.test b/tests/stamph.test index 2152393ba..bf3b3f77a 100755 --- a/tests/stamph.test +++ b/tests/stamph.test @@ -8,7 +8,7 @@ cat > configure.in << 'END' PACKAGE=nonesuch VERSION=nonesuch AC_ARG_PROGRAM -AM_PROG_INSTALL +AC_PROG_INSTALL AC_OUTPUT(Makefile stamp-h) END diff --git a/tests/subdir.test b/tests/subdir.test index 4e66718bd..a3fa48569 100755 --- a/tests/subdir.test +++ b/tests/subdir.test @@ -12,7 +12,7 @@ PACKAGE=nonesuch VERSION=nonesuch AC_ARG_PROGRAM AC_PROG_MAKE_SET -AM_PROG_INSTALL +AC_PROG_INSTALL AC_OUTPUT(Makefile zot/Makefile) END diff --git a/tests/subdir2.test b/tests/subdir2.test index 672435c20..485cae7d0 100755 --- a/tests/subdir2.test +++ b/tests/subdir2.test @@ -12,7 +12,7 @@ PACKAGE=nonesuch VERSION=nonesuch AC_ARG_PROGRAM AC_PROG_MAKE_SET -AM_PROG_INSTALL +AC_PROG_INSTALL AC_OUTPUT(Makefile one/Makefile one/two/Makefile) END diff --git a/tests/tagsub.test b/tests/tagsub.test index 805e8d380..54be5a80b 100755 --- a/tests/tagsub.test +++ b/tests/tagsub.test @@ -22,7 +22,7 @@ PACKAGE=nonesuch VERSION=nonesuch AC_ARG_PROGRAM AC_PROG_MAKE_SET -AM_PROG_INSTALL +AC_PROG_INSTALL AC_OUTPUT(Makefile sub/Makefile) END diff --git a/tests/texinfo5.test b/tests/texinfo5.test index 2497d7825..054870907 100755 --- a/tests/texinfo5.test +++ b/tests/texinfo5.test @@ -6,7 +6,7 @@ cat >> configure.in << 'END' AM_MAINTAINER_MODE -AM_EXEEXT +AC_EXEEXT END cat > Makefile.am << 'END'