blob: 53c59d03e6c2a3826101bb4d8f07c447ba2003f9 [file]
#!/bin/sh
# Test for bug when AC_OUTPUT has 2 args on the same line, eg:
# AC_OUTPUT([Makefile automake tests/Makefile],[chmod +x automake])
. $srcdir/defs || exit 1
cat > configure.in << 'END'
PACKAGE=nonesuch
VERSION=nonesuch
AC_ARG_PROGRAM
AC_PROG_INSTALL
AC_OUTPUT([Makefile], [true])
END
: > Makefile.am
$AUTOMAKE