Kaydet (Commit) a42c8271 authored tarafından Neil Schemenauer's avatar Neil Schemenauer

"install -d" does not work on BSDI systems even though autoconf thinks

install works on that system.   Use "install-sh" on BSDI.
üst c81d4706
This diff is collapsed.
...@@ -270,6 +270,15 @@ AC_MSG_RESULT($LDLIBRARY) ...@@ -270,6 +270,15 @@ AC_MSG_RESULT($LDLIBRARY)
AC_PROG_RANLIB AC_PROG_RANLIB
AC_SUBST(AR) AC_SUBST(AR)
AC_CHECK_PROGS(AR, ar aal, ar) AC_CHECK_PROGS(AR, ar aal, ar)
case $MACHDEP in
bsdos*)
# install -d does not work on BSDI
if test -z "$INSTALL"
then
INSTALL="${srcdir}/install-sh -c"
fi
esac
AC_PROG_INSTALL AC_PROG_INSTALL
# Not every filesystem supports hard links # Not every filesystem supports hard links
......
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