home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Linux Cubed Series 4: GNU Archives
/
Linux Cubed Series 4 - GNU Archives.iso
/
gnu
/
automake.0
/
automake
/
automake-1.0
/
tests
/
fpinstall.test
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1996-05-23
|
374 b
|
22 lines
#! /bin/sh
# Test for bug reported by Thomas Morgan. If both fp_PROG_INSTALL and
# AC_PROG_INSTALL appear in configure.in, bad error results.
. $srcdir/defs || exit 1
cat > configure.in << 'END'
PACKAGE=nonesuch
VERSION=nonesuch
AC_ARG_PROGRAM
AC_PROG_INSTALL
fp_PROG_INSTALL
AC_OUTPUT(Makefile)
END
cat > Makefile.am <<'END'
bin_SCRIPTS = zot
END
$AUTOMAKE || exit 1