mirror of https://github.com/python/cpython
install on HP-UX does not support the -d option. Using the install-sh instead.
This fixes SF bug: [ #473491 ] "install -d" doesn't work on HP-UX.
This commit is contained in:
parent
f23473f008
commit
af5567f734
|
@ -327,8 +327,8 @@ AC_SUBST(AR)
|
|||
AC_CHECK_PROGS(AR, ar aal, ar)
|
||||
|
||||
case $MACHDEP in
|
||||
bsdos*)
|
||||
# install -d does not work on BSDI
|
||||
bsdos*|hp*|HP*)
|
||||
# install -d does not work on BSDI or HP-UX
|
||||
if test -z "$INSTALL"
|
||||
then
|
||||
INSTALL="${srcdir}/install-sh -c"
|
||||
|
|
Loading…
Reference in New Issue