From: Tom Lane <tgl@sss.pgh.pa.us>

We're carrying around a copy of install-sh in case the local system
has no install script.  It's wasted baggage, because configure doesn't
know it's there :-(.  (Apparently everyone who's used postgres lately
already had an install script somewhere in their path.  I happened to
try to run configure with a minimal PATH tonight, and it promptly
gave up for lack of an install program.)  Here's the patch.
This commit is contained in:
Marc G. Fournier 1998-08-30 19:41:50 +00:00
parent 7f3630e270
commit 91178b8b2e
2 changed files with 280 additions and 282 deletions

559
src/configure vendored

File diff suppressed because it is too large Load Diff

View File

@ -354,8 +354,7 @@ AC_ARG_WITH(CXX,
[ AC_PROG_CXX])
AC_SUBST(HAVECXX)
INSTALLPATH="/usr/ucb:$PATH"
AC_PATH_PROGS(INSTALL, ginstall installbsd bsdinst scoinst install, NONE, $INSTALLPATH)
AC_PATH_PROGS(INSTALL, ginstall installbsd bsdinst scoinst install install-sh, NONE, "/usr/ucb:$PATH:`pwd`")
if test $INSTALL = "NONE"
then
echo "- No Install Script found - aborting."