[Python-checkins] CVS: python/dist/src configure,1.267,1.268 configure.in,1.275,1.276

Neil Schemenauer nascheme@users.sourceforge.net
Sun, 21 Oct 2001 15:32:07 -0700


Update of /cvsroot/python/python/dist/src
In directory usw-pr-cvs1:/tmp/cvs-serv26961

Modified Files:
	configure configure.in 
Log Message:
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.


Index: configure
===================================================================
RCS file: /cvsroot/python/python/dist/src/configure,v
retrieving revision 1.267
retrieving revision 1.268
diff -C2 -d -r1.267 -r1.268
*** configure	2001/10/20 14:21:44	1.267
--- configure	2001/10/21 22:32:04	1.268
***************
*** 1,5 ****
  #! /bin/sh
  
! # From configure.in Revision: 1.274 
  
  # Guess values for system-dependent variables and create Makefiles.
--- 1,5 ----
  #! /bin/sh
  
! # From configure.in Revision: 1.275 
  
[...3861 lines suppressed...]
  if eval "test \"`echo '$''{'ac_cv_type_socklen_t'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
    cat > conftest.$ac_ext <<EOF
! #line 7425 "configure"
  #include "confdefs.h"
  #include <sys/types.h>
***************
*** 7460,7464 ****
  SRCDIRS="Parser Grammar Objects Python Modules"
  echo $ac_n "checking for build directories""... $ac_c" 1>&6
! echo "configure:7463: checking for build directories" >&5
  for dir in $SRCDIRS; do
      if test ! -d $dir; then
--- 7471,7475 ----
  SRCDIRS="Parser Grammar Objects Python Modules"
  echo $ac_n "checking for build directories""... $ac_c" 1>&6
! echo "configure:7474: checking for build directories" >&5
  for dir in $SRCDIRS; do
      if test ! -d $dir; then

Index: configure.in
===================================================================
RCS file: /cvsroot/python/python/dist/src/configure.in,v
retrieving revision 1.275
retrieving revision 1.276
diff -C2 -d -r1.275 -r1.276
*** configure.in	2001/10/20 14:21:44	1.275
--- configure.in	2001/10/21 22:32:04	1.276
***************
*** 328,333 ****
  
  case $MACHDEP in
! bsdos*)
! 	# install -d does not work on BSDI
  	if test -z "$INSTALL"
  	then
--- 328,333 ----
  
  case $MACHDEP in
! bsdos*|hp*|HP*)
! 	# install -d does not work on BSDI or HP-UX
  	if test -z "$INSTALL"
  	then