blob: fba18f48a0d2390ebc42cfeb8e675d337d176942 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#! /bin/sh
# Test for bug reported by Thomas Morgan. If both AC_PROG_INSTALL and
# AC_PROG_INSTALL appear in configure.in, bad error results.
. $srcdir/defs || exit 1
cat > configure.in << 'END'
AC_INIT
AM_INIT_AUTOMAKE(nonesuch, nonesuch)
AC_OUTPUT(Makefile)
END
cat > Makefile.am <<'END'
bin_SCRIPTS = zot
END
$ACLOCAL || exit 1
$AUTOMAKE || exit 1
|