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
# Test to make sure error handling in add_file works.
. $srcdir/defs || exit 1
cat > configure.in << 'END'
AM_ONE_MACRO
END
# Set up a strange environment, where AM_ONE_MACRO exists but its
# dependency does not.
cat > AM_ONE_MACRO.m4 << 'END'
AC_DEFUN([AM_ONE_MACRO],
[AC_REQUIRE([AM_UNEXISING_MACRO])])
END
$ACLOCAL && exit 1
exit 0