Skip to content

Commit aff479b

Browse files
committed
Look in /usr/ucb first for install.
1 parent cdc2c06 commit aff479b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/configure

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1036,7 +1036,7 @@ else
10361036
;;
10371037
*)
10381038
IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:"
1039-
for ac_dir in $PATH$ac_dummy; do
1039+
for ac_dir in /usr/ucb:$PATH$ac_dummy; do
10401040
test -z "$ac_dir" && ac_dir=.
10411041
if test -f $ac_dir/$ac_word; then
10421042
ac_cv_path_INSTALL="$ac_dir/$ac_word"

src/configure.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ dnl AC_SUBST(HAVECXX)
259259
dnl ****************************************************************
260260
HAVECXX='HAVE_Cplusplus=false'
261261
AC_SUBST(HAVECXX)
262-
AC_PATH_PROGS(INSTALL, ginstall installbsd bsdinst scoinst install, NONE, $PATH)
262+
AC_PATH_PROGS(INSTALL, ginstall installbsd bsdinst scoinst install, NONE, /usr/ucb:$PATH)
263263
if test $INSTALL = "NONE"
264264
then
265265
echo "- No Install Script found - aborting."

0 commit comments

Comments
 (0)