nothing
[automake.git] / tests / acoutput.test
blob53c59d03e6c2a3826101bb4d8f07c447ba2003f9
1 #!/bin/sh
3 # Test for bug when AC_OUTPUT has 2 args on the same line, eg:
4 # AC_OUTPUT([Makefile automake tests/Makefile],[chmod +x automake])
6 . $srcdir/defs || exit 1
8 cat > configure.in << 'END'
9 PACKAGE=nonesuch
10 VERSION=nonesuch
11 AC_ARG_PROGRAM
12 AC_PROG_INSTALL
13 AC_OUTPUT([Makefile], [true])
14 END
16 : > Makefile.am
18 $AUTOMAKE