#! /bin/sh
# Make sure ":" works with files automake generates.
# This test is for multiple ":"s.
. $srcdir/defs || exit 1
cat > configure.in << 'END'
PACKAGE=nonesuch
VERSION=nonesuch
AC_ARG_PROGRAM
AC_PROG_INSTALL
AC_OUTPUT(Makefile:zardoz.in:two.in)
END
: > zardoz.am
: > two.in
$AUTOMAKE || exit 1
# We actually check several things here.
test -f zardoz.in || exit 1
grep '^zardoz:' zardoz.in && exit 1
grep ' two.in' zardoz.in