#! /bin/sh # Test for AC_OUTPUT(). From Mark Galassi. . $srcdir/defs || exit 1 cat > configure.in << 'END' AC_OUTPUT() END : > Makefile.am $ACLOCAL || exit 1 $AUTOMAKE > output 2>&1 && exit 1 grep 'found or specified' output && exit 1 exit 0