Tag
Hash :
cfa9415f
Author :
Date :
2002-03-21T09:11:56
* Makefile.am (maintainer-check): Check for misuses of make, autoconf, automake, aclocal, and perl in the testsuite. Suggest using $MAKE, $AUTOCONF, $AUTOMAKE, $ACLOCAL, and $PERL instead. * tests/confsub.test: Use $AUTOCONF and $MAKE. * tests/extra5.test, tests/extra6.test, tests/lex5.test, tests/nobase.test, tests/nodist2.test, tests/pr204.test, tests/pr224.test, tests/pr287.test, tests/strip.test, tests/yacc8.test: Use $MAKE.
#! /bin/sh
# Check to make sure EXTRA_DIST can contain a directory from $buildir.
# From Dean Povey.
. $srcdir/defs || exit 1
echo AC_OUTPUT >> configure.in
cat > Makefile.am << 'END'
EXTRA_DIST=foo
foo:
mkdir foo
touch foo/bar
END
set -e
$ACLOCAL
$AUTOMAKE
$AUTOCONF
mkdir build
cd build
../configure
$MAKE distdir