Tag
Hash :
1de3ff47
Author :
Date :
1998-09-26T19:06:21
* aclocal.test: Put AM_INIT_AUTOMAKE into configure.in. * library.test: Use AC_EXEEXT. * texinfo5.test: Use AC_EXEEXT. * Many files: use AC_PROG_INSTALL, not AM_PROG_INSTALL.
#! /bin/sh
# Test to ensure --gnits version checking is correct.
. $srcdir/defs || exit 1
cat > configure.in << 'END'
PACKAGE=nonesuch
VERSION=3.5.3.2
AC_ARG_PROGRAM
AC_PROG_INSTALL
AC_OUTPUT(Makefile)
END
cat > Makefile.am << 'END'
pkgdata_DATA =
END
# Files required by Gnits.
: > INSTALL
: > NEWS
: > README
: > COPYING
: > AUTHORS
: > ChangeLog
: > THANKS
$AUTOMAKE --gnits && exit 1
exit 0