Mailing List Archive

python/dist/src configure,1.351,1.352 configure.in,1.362,1.363
Update of /cvsroot/python/python/dist/src
In directory usw-pr-cvs1:/tmp/cvs-serv28490

Modified Files:
configure configure.in
Log Message:
Fix for bug 631247: configure should test the build directory for
being on a case-insensitive filesystem, not the source directory.



Index: configure
===================================================================
RCS file: /cvsroot/python/python/dist/src/configure,v
retrieving revision 1.351
retrieving revision 1.352
diff -C2 -d -r1.351 -r1.352
*** configure 2 Nov 2002 16:58:03 -0000 1.351
--- configure 6 Nov 2002 13:33:30 -0000 1.352
***************
*** 1,4 ****
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.53 for python 2.3.
--- 1,4 ----
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.53 for python 2.3.
***************
*** 3000,3004 ****
echo "$as_me:$LINENO: checking for case-insensitive build directory" >&5
echo $ECHO_N "checking for case-insensitive build directory... $ECHO_C" >&6
! if test -d "${srcdir}/python"
then
echo "$as_me:$LINENO: result: yes" >&5
--- 3000,3008 ----
echo "$as_me:$LINENO: checking for case-insensitive build directory" >&5
echo $ECHO_N "checking for case-insensitive build directory... $ECHO_C" >&6
! if test ! -d CaseSensitiveTestDir; then
! mkdir CaseSensitiveTestDir
! fi
!
! if test -d casesensitivetestdir
then
echo "$as_me:$LINENO: result: yes" >&5
***************
*** 3010,3013 ****
--- 3014,3018 ----
BUILDEXEEXT=$EXEEXT
fi
+ rmdir CaseSensitiveTestDir

case $MACHDEP in

Index: configure.in
===================================================================
RCS file: /cvsroot/python/python/dist/src/configure.in,v
retrieving revision 1.362
retrieving revision 1.363
diff -C2 -d -r1.362 -r1.363
*** configure.in 2 Nov 2002 16:58:05 -0000 1.362
--- configure.in 6 Nov 2002 13:33:32 -0000 1.363
***************
*** 254,258 ****
AC_SUBST(BUILDEXEEXT)
AC_MSG_CHECKING(for case-insensitive build directory)
! if test -d "${srcdir}/python"
then
AC_MSG_RESULT(yes)
--- 254,262 ----
AC_SUBST(BUILDEXEEXT)
AC_MSG_CHECKING(for case-insensitive build directory)
! if test ! -d CaseSensitiveTestDir; then
! mkdir CaseSensitiveTestDir
! fi
!
! if test -d casesensitivetestdir
then
AC_MSG_RESULT(yes)
***************
*** 262,265 ****
--- 266,270 ----
BUILDEXEEXT=$EXEEXT
fi
+ rmdir CaseSensitiveTestDir

case $MACHDEP in