* depcomp (ddashmd): Removed case.
[automake.git] / tests / output4.test
blobe2046769e4d8d8b896465ab6cbf072f2163e41a4
1 #! /bin/sh
3 # It's hard to believe there are so many AC_OUTPUT-related bugs.
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(tests/Makefile tests/defs)
15 END
17 mkdir tests
18 : > tests/defs.in
19 : > tests/Makefile.am
21 $AUTOMAKE || exit 1
23 grep tests/defs.in tests/Makefile.in && exit 1
24 exit 0