From: Bruce Momjian Date: Wed, 30 Jul 1997 19:16:23 +0000 (+0000) Subject: Look in /usr/ucb first for install. X-Git-Tag: REL6_2~417 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=aff479b4d179b70f8d398312095cc34d067d4e04;p=postgresql Look in /usr/ucb first for install. --- diff --git a/src/configure b/src/configure index adbc113c84..a596dab44a 100755 --- a/src/configure +++ b/src/configure @@ -1036,7 +1036,7 @@ else ;; *) 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=. if test -f $ac_dir/$ac_word; then ac_cv_path_INSTALL="$ac_dir/$ac_word" diff --git a/src/configure.in b/src/configure.in index d44717db26..c2665b4802 100644 --- a/src/configure.in +++ b/src/configure.in @@ -259,7 +259,7 @@ dnl AC_SUBST(HAVECXX) dnl **************************************************************** HAVECXX='HAVE_Cplusplus=false' 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" then echo "- No Install Script found - aborting."