nothing
[automake.git] / tests / colon3.test
blob1d5f83236cb86c19910fcf5f3736d85d4e8aa73d
1 #! /bin/sh
3 # Make sure ":" works with files automake generates.
4 # This test is for multiple ":"s.
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:zardoz.in:two.in)
14 END
16 : > zardoz.am
17 : > two.in
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 grep ' two.in' zardoz.in