mirror of
https://github.com/AdaCore/cpython.git
synced 2026-02-12 12:57:15 -08:00
"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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user