* configure.in: Updated to 1.4d and released.
[automake.git] / tests / output2.test
blob0a22168694cc3ed89c75be27222e49312cf6fb98
1 #! /bin/sh
3 # Another AC_OUTPUT test. From report by Ulrich Drepper.
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 intl/intlh.inst po/Makefile.in misc/gettextize)
15 END
17 : > Makefile.am
19 mkdir intl po misc
20 : > intl/intlh.inst.in
21 : > po/Makefile.in.am
22 : > misc/gettextize.in
24 $AUTOMAKE || exit 1
26 grep '^gettextize' Makefile.in && exit 1
27 exit 0