Commit b07f4b4e authored by Bruce Momjian's avatar Bruce Momjian

Configure fix for install script search.

parent 82707ffe
...@@ -1352,6 +1352,7 @@ fi ...@@ -1352,6 +1352,7 @@ fi
set -x
for ac_prog in ginstall installbsd bsdinst scoinst install install-sh for ac_prog in ginstall installbsd bsdinst scoinst install install-sh
do do
# Extract the first word of "$ac_prog", so it can be a program name with args. # Extract the first word of "$ac_prog", so it can be a program name with args.
...@@ -1389,7 +1390,7 @@ test -n "$INSTALL" && break ...@@ -1389,7 +1390,7 @@ test -n "$INSTALL" && break
done done
test -n "$INSTALL" || INSTALL="NONE" test -n "$INSTALL" || INSTALL="NONE"
if test $INSTALL = "NONE" if test "$INSTALL" = "NONE"
then then
echo "- No Install Script found - aborting." echo "- No Install Script found - aborting."
exit 0; exit 0;
......
...@@ -354,11 +354,26 @@ AC_ARG_WITH(CXX, ...@@ -354,11 +354,26 @@ AC_ARG_WITH(CXX,
[ AC_PROG_CXX]) [ AC_PROG_CXX])
AC_SUBST(HAVECXX) AC_SUBST(HAVECXX)
AC_PATH_PROGS(INSTALL, ginstall installbsd bsdinst scoinst install install-sh, NONE, "/usr/ucb:$PATH:`pwd`") AC_PATH_PROGS(INSTALL, ginstall, NONE, "/usr/ucb:$PATH:`pwd`")
if test $INSTALL = "NONE" if test "$INSTALL" = "NONE"
AC_PATH_PROGS(INSTALL, installbsd, NONE, "/usr/ucb:$PATH:`pwd`")
fi
if test "$INSTALL" = "NONE"
AC_PATH_PROGS(INSTALL, bsdinst, NONE, "/usr/ucb:$PATH:`pwd`")
fi
if test "$INSTALL" = "NONE"
AC_PATH_PROGS(INSTALL, scoinst, NONE, "/usr/ucb:$PATH:`pwd`")
fi
if test "$INSTALL" = "NONE"
AC_PATH_PROGS(INSTALL, install, NONE, "/usr/ucb:$PATH:`pwd`")
fi
if test "$INSTALL" = "NONE"
AC_PATH_PROGS(INSTALL, install-sh, NONE, "/usr/ucb:$PATH:`pwd`")
fi
if test "$INSTALL" = "NONE"
then then
echo "- No Install Script found - aborting." echo "- No Install Script found - aborting."
exit 0; exit 0
fi fi
INSTLOPTS="-m 444" INSTLOPTS="-m 444"
......
AROPT:cq AROPT:cq
CC:gcc2
CFLAGS:-O2 -m486 -pipe -DPRE_BSDI_2_1 CFLAGS:-O2 -m486 -pipe -DPRE_BSDI_2_1
SHARED_LIB: SHARED_LIB:
ALL: ALL:
...@@ -9,3 +8,4 @@ USE_LOCALE:no ...@@ -9,3 +8,4 @@ USE_LOCALE:no
DLSUFFIX:.o DLSUFFIX:.o
YFLAGS:-d YFLAGS:-d
YACC: YACC:
CC:gcc2
AROPT:cq AROPT:cq
CC:gcc2
CFLAGS:-O2 -m486 -pipe CFLAGS:-O2 -m486 -pipe
SHARED_LIB: SHARED_LIB:
ALL: ALL:
...@@ -9,3 +8,5 @@ USE_LOCALE:no ...@@ -9,3 +8,5 @@ USE_LOCALE:no
DLSUFFIX:.o DLSUFFIX:.o
YFLAGS:-d YFLAGS:-d
YACC: YACC:
CC:gcc2
AROPT:cq AROPT:cq
CC:gcc2
CFLAGS:-O2 -m486 -pipe CFLAGS:-O2 -m486 -pipe
SHARED_LIB: SHARED_LIB:
ALL: ALL:
...@@ -9,3 +8,5 @@ USE_LOCALE:no ...@@ -9,3 +8,5 @@ USE_LOCALE:no
DLSUFFIX:.o DLSUFFIX:.o
YFLAGS:-d YFLAGS:-d
YACC: YACC:
CC:gcc2
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment