Tag
Hash :
a7e13d9e
Author :
Date :
2002-01-09T10:32:28
* tests/dup3.test: Remove all -I from $ACLOCAL before using it. * tests/error.test: Use some macro names which are not defined by Automake itself.
#! /bin/sh
# Make sure aclocal searches includes in the right order.
. $srcdir/defs || exit 1
cat >> configure.in << 'END'
AC_INIT
AM_INIT_AUTOMAKE
END
mkdir zoo
cat > zoo/zoo.m4 << 'END'
AC_DEFUN([AM_INIT_AUTOMAKE], zardoz)
END
# Strip all options from ACLOCAL, especially -I's.
ACLOCAL="`echo $ACLOCAL | sed -e 's/ -.*$//'` --acdir=$srcdir/../m4"
$ACLOCAL -I zoo || exit 1
fgrep zardoz aclocal.m4