* tests/Makefile.am (TESTS): Added yacc5.test.
[automake.git] / tests / acoutnoq.test
blobb35efcfc192c784e1b486368a0b6b7d0475e0d49
1 #!/bin/sh
3 # Test for bug reported by Jerome Santini.
4 # If I put this line in my configure.in:
5 # AC_OUTPUT(Makefile src/Makefile tests/Makefile, echo timestamp > stamp-h)dnl
6 # automake is not happy:
7 # [ ... ]
9 . $srcdir/defs || exit 1
11 cat > configure.in << 'END'
12 AM_INIT_AUTOMAKE(nonesuch, nonesuch)
13 PACKAGE=nonesuch
14 VERSION=nonesuch
15 AC_ARG_PROGRAM
16 AC_PROG_INSTALL
17 AC_PROG_MAKE_SET
18 AC_OUTPUT(Makefile, [true])
19 END
21 : > Makefile.am
23 $AUTOMAKE