* configure.in: Upped to version 1.4k.
[automake.git] / tests / fpinstall.test
blob703d6c66e97ef51c3ac1f4964d819a84896ffdf6
1 #! /bin/sh
3 # Test for bug reported by Thomas Morgan. If both AC_PROG_INSTALL and
4 # AC_PROG_INSTALL appear in configure.in, bad error results.
6 . $srcdir/defs || exit 1
8 cat > configure.in << 'END'
9 AM_INIT_AUTOMAKE(nonesuch, nonesuch)
10 PACKAGE=nonesuch
11 VERSION=nonesuch
12 AC_ARG_PROGRAM
13 AC_PROG_MAKE_SET
14 AC_PROG_INSTALL
15 AC_PROG_INSTALL
16 AC_OUTPUT(Makefile)
17 END
19 cat > Makefile.am <<'END'
20 bin_SCRIPTS = zot
21 END
23 $AUTOMAKE || exit 1