* configure.in: Upped to version 1.4k.
[automake.git] / tests / acoutput.test
blobd20c881c03c6554c17666067fcfa072ee3e91ccf
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 AM_INIT_AUTOMAKE(nonesuch, nonesuch)
10 PACKAGE=nonesuch
11 VERSION=nonesuch
12 AC_ARG_PROGRAM
13 AC_PROG_INSTALL
14 AC_PROG_MAKE_SET
15 AC_OUTPUT([Makefile], [true])
16 END
18 : > Makefile.am
20 $AUTOMAKE