Tag
#! /bin/sh
# Check to make sure "make install" will build all in directory with
# nothing to install.
. $srcdir/defs || exit 1
cat > Makefile.am << 'END'
all-local:
exit 1
END
$AUTOMAKE || exit 1
# "make install" should fail here if there is a bug.
make -f Makefile.in install && exit 1
exit 0