Skip to content
Snippets Groups Projects
Commit 5ab8a4ee authored by Bruce Momjian's avatar Bruce Momjian
Browse files

Fix for install path

parent 566cd878
No related branches found
Tags
No related merge requests found
...@@ -1351,6 +1351,7 @@ fi ...@@ -1351,6 +1351,7 @@ fi
fi fi
set -x
for ac_prog in ginstall for ac_prog in ginstall
do do
......
...@@ -354,22 +354,8 @@ AC_ARG_WITH(CXX, ...@@ -354,22 +354,8 @@ AC_ARG_WITH(CXX,
[ AC_PROG_CXX]) [ AC_PROG_CXX])
AC_SUBST(HAVECXX) AC_SUBST(HAVECXX)
AC_PATH_PROGS(INSTALL, ginstall, NONE, "/usr/ucb:$PATH:`pwd`") INSTALLPATH="`echo /usr/ucb:$PATH:\`pwd\` | sed 's/:/ /g'`"
if test "$INSTALL" = "NONE" AC_PATH_PROGS(INSTALL, ginstall installbsd bsdinst scoinst install install-sh, NONE, $INSTALLPATH )
then AC_PATH_PROGS(INSTALL, installbsd, NONE, "/usr/ucb:$PATH:`pwd`")
fi
if test "$INSTALL" = "NONE"
then AC_PATH_PROGS(INSTALL, bsdinst, NONE, "/usr/ucb:$PATH:`pwd`")
fi
if test "$INSTALL" = "NONE"
then AC_PATH_PROGS(INSTALL, scoinst, NONE, "/usr/ucb:$PATH:`pwd`")
fi
if test "$INSTALL" = "NONE"
then AC_PATH_PROGS(INSTALL, install, NONE, "/usr/ucb:$PATH:`pwd`")
fi
if test "$INSTALL" = "NONE"
then AC_PATH_PROGS(INSTALL, install-sh, NONE, "/usr/ucb:$PATH:`pwd`")
fi
if test "$INSTALL" = "NONE" if test "$INSTALL" = "NONE"
then then
echo "- No Install Script found - aborting." echo "- No Install Script found - aborting."
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment