Tag
Hash :
4becb02d
Author :
Date :
2001-10-21T18:05:22
* tests/install.test: This test is an empty shell, do not run automake. * tests/Makefile.am (TESTS): Don't run it. * tests/defs (ACLOCAL): When using gettext, pass in the installed aclocaldir. * tests/subdircond.test (SUBDIRS): AM_GNU_GETTEXT needs automake --add--missing. * tests/obsolete2.test: Remove, merged into... * tests/obsolete.test: here. Both aclocal and automake should complain.
#! /bin/sh
# Test to make sure obsolete macros really are.
. $srcdir/defs || exit 1
cat >> configure.in << 'END'
fp_PROG_INSTALL
END
: > Makefile.am
$ACLOCAL 2>stderr && exit 1
grep AC_PROG_INSTALL stderr || exit 1
$AUTOMAKE 2>stderr && exit 1
grep AC_PROG_INSTALL stderr || exit 1
exit 0