typo + new comment
[automake.git] / tests / colon2.test
blobdb6fa5e2c6abf22083c183748833c459bc38040e
1 #! /bin/sh
3 # Make sure ":" works with files automake generates.
5 . $srcdir/defs || exit 1
7 cat > configure.in << 'END'
8 AM_INIT_AUTOMAKE(nonesuch, nonesuch)
9 PACKAGE=nonesuch
10 VERSION=nonesuch
11 AC_ARG_PROGRAM
12 AC_PROG_MAKE_SET
13 AC_PROG_INSTALL
14 AC_OUTPUT(Makefile:zardoz.in)
15 END
17 : > zardoz.am
19 $AUTOMAKE || exit 1
21 # We actually check several things here.
22 test -f zardoz.in || exit 1
23 grep '^zardoz:' zardoz.in && exit 1
24 exit 0