typo + new comment
[automake.git] / tests / colon.test
blob451350025cb998579faaa0e562e1ff5d3454e934
1 #! /bin/sh
3 # Test for bug reported by Nyul Laszlo. When using the ":" syntax in
4 # AC_OUTPUT, Automake fails to find the correct file.
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 foo.h:foo.hin)
16 END
18 : > Makefile.am
19 : > foo.hin
20 : > stamp-h.in
22 $AUTOMAKE