diff options
author | Neil Schemenauer <nascheme@enme.ucalgary.ca> | 2001-03-31 00:01:55 (GMT) |
---|---|---|
committer | Neil Schemenauer <nascheme@enme.ucalgary.ca> | 2001-03-31 00:01:55 (GMT) |
commit | a42c8271abfcef7c7bb2d16b2096188976ef9c62 (patch) | |
tree | d3c8a7ae4e116dee98977be388815bb781297054 /configure.in | |
parent | c81d470648d12bb219e9d20a2682941e707cb147 (diff) | |
download | cpython-a42c8271abfcef7c7bb2d16b2096188976ef9c62.zip cpython-a42c8271abfcef7c7bb2d16b2096188976ef9c62.tar.gz cpython-a42c8271abfcef7c7bb2d16b2096188976ef9c62.tar.bz2 |
"install -d" does not work on BSDI systems even though autoconf thinks
install works on that system. Use "install-sh" on BSDI.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 75b9d32..5dcd765 100644 --- a/configure.in +++ b/configure.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 |