Tag
Hash :
8dc162ad
Author :
Date :
2001-10-21T18:03:20
* tests/defs (ACLOCAL): Point to the installed aclocaldir is libtool is required. * tests/lex.test: Run AC_INIT once. * tests/ldflags.test, tests/listval.test, tests/suffix2.test: Libtool is required. * tests/header.test: Built a correct configure.in. * tests/defun2.test (configure.in): Be a bit respectful with Autoconf, close the macro invocations. * tests/confdeps.test: Even when not using aclocal, aclocal.m4 must be correct. * automake.in (scan_autoconf_traces): Add support for AC_CANONICAL_HOST, AC_CANONICAL_SYSTEM, A[CM]_PROG_LIBTOOL, AM_CONFIG_HEADER, AM_MAINTAINER_MODE. * tests/condincl.test (target): Better pattern, to avoid matching the definition of `target_alias' which is now properly discovered as an AC_SUBST by traces. * cond4.test: Better grep pattern: After all, why shouldn't TWO_FALSE be AC_SUBST properly. * tests/installsh.test (AUTOMAKE, ACLOCAL): Adjust.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
#! /bin/sh
# Test for this bug:
# automake: Makefile.am: required file "../../install-sh" not found; installing
# This also makes sure that install-sh is created in the correct directory.
. $srcdir/defs || exit 1
: > Makefile.am
rm -f install-sh
# Since the default path includes '../..', we must run this test in
# yet another subdir.
mkdir frob
mv Makefile.am configure.in mkinstalldirs frob/
cd frob
# If srcdir is relative, we need to modify it.
case "$srcdir" in
[\\/]* | ?:[\\/]*)
;;
*)
srcdir="../$srcdir"
;;
esac
AUTOMAKE="$PERL ../../../automake --libdir=$srcdir/../lib --foreign --Werror"
ACLOCAL="$PERL ../../../aclocal --acdir=$srcdir/../m4"
# Now we proceed with the test
$ACLOCAL || exit 1
$AUTOMAKE --add-missing > output 2>&1 \
|| exit 1
# Only one `/' should appear in the output.
grep '/.*/' output \
&& exit 1
test -f install-sh