1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-31 22:04:40 +03:00

Look in /usr/ucb first for install.

This commit is contained in:
Bruce Momjian
1997-07-30 19:16:23 +00:00
parent cdc2c06386
commit aff479b4d1
2 changed files with 2 additions and 2 deletions

2
src/configure vendored
View File

@ -1036,7 +1036,7 @@ else
;; ;;
*) *)
IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:" IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:"
for ac_dir in $PATH$ac_dummy; do for ac_dir in /usr/ucb:$PATH$ac_dummy; do
test -z "$ac_dir" && ac_dir=. test -z "$ac_dir" && ac_dir=.
if test -f $ac_dir/$ac_word; then if test -f $ac_dir/$ac_word; then
ac_cv_path_INSTALL="$ac_dir/$ac_word" ac_cv_path_INSTALL="$ac_dir/$ac_word"

View File

@ -259,7 +259,7 @@ dnl AC_SUBST(HAVECXX)
dnl **************************************************************** dnl ****************************************************************
HAVECXX='HAVE_Cplusplus=false' HAVECXX='HAVE_Cplusplus=false'
AC_SUBST(HAVECXX) AC_SUBST(HAVECXX)
AC_PATH_PROGS(INSTALL, ginstall installbsd bsdinst scoinst install, NONE, $PATH) AC_PATH_PROGS(INSTALL, ginstall installbsd bsdinst scoinst install, NONE, /usr/ucb:$PATH)
if test $INSTALL = "NONE" if test $INSTALL = "NONE"
then then
echo "- No Install Script found - aborting." echo "- No Install Script found - aborting."