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

install file search fix

parent ec47d20c
No related branches found
No related tags found
No related merge requests found
......@@ -356,19 +356,19 @@ AC_SUBST(HAVECXX)
AC_PATH_PROGS(INSTALL, ginstall, NONE, "/usr/ucb:$PATH:`pwd`")
if test "$INSTALL" = "NONE"
AC_PATH_PROGS(INSTALL, installbsd, NONE, "/usr/ucb:$PATH:`pwd`")
then 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`")
then 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`")
then 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`")
then 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`")
then AC_PATH_PROGS(INSTALL, install-sh, NONE, "/usr/ucb:$PATH:`pwd`")
fi
if test "$INSTALL" = "NONE"
then
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment