#! /bin/sh # Another test for a failing ":" in AC_OUTPUT. Report from Maciej # Stachowiak. . $srcdir/defs || exit 1 cat > configure.in << 'END' AC_INIT AM_INIT_AUTOMAKE(nonesuch, nonesuch) AC_OUTPUT(subdir/bar:subdir/foo \ Makefile \ subdir/Makefile ) END : > Makefile.am mkdir subdir : > subdir/Makefile.am : > subdir/foo $ACLOCAL || exit 1 $AUTOMAKE || exit 1 # shouldn't have any bar.in grep 'bar.in' subdir/Makefile.in && exit 1 # DIST_COMMON should have foo, not subdir/foo grep 'DIST_COMMON.*subdir/foo' subdir/Makefile.in && exit 1 exit 0