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
# Test for install-strip.
. $srcdir/defs || exit 1
cat > configure.in << 'END'
AC_INIT(foo, 0.1, dev@null)
AM_INIT_AUTOMAKE($PACKAGE, $VERSION)
AC_PROG_CC
AM_CONDITIONAL(FOOTEST, false)
AC_CONFIG_FILES(Makefile)
AC_OUTPUT
END
cat > Makefile.am << 'END'
bin_SCRIPTS = foo
END
cat > foo << 'END'
#! /bin/sh
echo Maude
END
chmod +x foo
set -e
mkdir install
$ACLOCAL
$AUTOCONF
$AUTOMAKE -a
./configure --prefix=`cd install && pwd`
$MAKE
$MAKE install-strip