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:
parent
7f3630e270
commit
91178b8b2e
559
src/configure
vendored
559
src/configure
vendored
File diff suppressed because it is too large
Load Diff
@ -354,8 +354,7 @@ AC_ARG_WITH(CXX,
|
|||||||
[ AC_PROG_CXX])
|
[ AC_PROG_CXX])
|
||||||
AC_SUBST(HAVECXX)
|
AC_SUBST(HAVECXX)
|
||||||
|
|
||||||
INSTALLPATH="/usr/ucb:$PATH"
|
AC_PATH_PROGS(INSTALL, ginstall installbsd bsdinst scoinst install install-sh, NONE, "/usr/ucb:$PATH:`pwd`")
|
||||||
AC_PATH_PROGS(INSTALL, ginstall installbsd bsdinst scoinst install, NONE, $INSTALLPATH)
|
|
||||||
if test $INSTALL = "NONE"
|
if test $INSTALL = "NONE"
|
||||||
then
|
then
|
||||||
echo "- No Install Script found - aborting."
|
echo "- No Install Script found - aborting."
|
||||||
|
Loading…
x
Reference in New Issue
Block a user