summaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorNeil Schemenauer <nascheme@enme.ucalgary.ca>2001-10-21 22:32:04 (GMT)
committerNeil Schemenauer <nascheme@enme.ucalgary.ca>2001-10-21 22:32:04 (GMT)
commitaf5567f7349d80d9366a5ddbdf67115dfe8aad13 (patch)
tree1e09c60e231a6848e88e6d56623f6fa48bb6e451 /configure.in
parentf23473f00834fb56a6f71cf18191261f1d083c8b (diff)
downloadcpython-af5567f7349d80d9366a5ddbdf67115dfe8aad13.zip
cpython-af5567f7349d80d9366a5ddbdf67115dfe8aad13.tar.gz
cpython-af5567f7349d80d9366a5ddbdf67115dfe8aad13.tar.bz2
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.
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in
index 9c72c31..c9d2c1a 100644
--- a/configure.in
+++ b/configure.in
@@ -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"