2002-02-18 Paul Eggert <eggert@twinsun.com>
[platform/upstream/automake.git] / tests / fpinstall.test
1 #! /bin/sh
2
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.
5
6 . $srcdir/defs || exit 1
7
8 cat > configure.in << 'END'
9 AC_INIT
10 AM_INIT_AUTOMAKE(nonesuch, nonesuch)
11 AC_OUTPUT(Makefile)
12 END
13
14 cat > Makefile.am <<'END'
15 bin_SCRIPTS = zot
16 END
17
18 $ACLOCAL || exit 1
19 $AUTOMAKE || exit 1