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

install works on that system.   Use "install-sh" on BSDI.
This commit is contained in:
Neil Schemenauer 2001-03-31 00:01:55 +00:00
parent c81d470648
commit a42c8271ab
2 changed files with 327 additions and 309 deletions

627
configure vendored

File diff suppressed because it is too large Load diff

View file

@ -270,6 +270,15 @@ AC_MSG_RESULT($LDLIBRARY)
AC_PROG_RANLIB
AC_SUBST(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
# Not every filesystem supports hard links