]> granicus.if.org Git - python/commitdiff
Fix for bug 631247: configure should test the build directory for
authorJack Jansen <jack.jansen@cwi.nl>
Wed, 6 Nov 2002 13:33:32 +0000 (13:33 +0000)
committerJack Jansen <jack.jansen@cwi.nl>
Wed, 6 Nov 2002 13:33:32 +0000 (13:33 +0000)
being on a case-insensitive filesystem, not the source directory.

configure
configure.in

index 9f15882eb55405bff22c1535d937269e3a4a5e74..c2073d0564443dd433b130481be6a23b422aa106 100755 (executable)
--- a/configure
+++ b/configure
@@ -1,5 +1,5 @@
 #! /bin/sh
-# From configure.in Revision: 1.361 .
+# From configure.in Revision: 1.362 .
 # Guess values for system-dependent variables and create Makefiles.
 # Generated by GNU Autoconf 2.53 for python 2.3.
 #
@@ -2999,7 +2999,11 @@ echo "${ECHO_T}$EXEEXT" >&6
 
 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"
+if test ! -d CaseSensitiveTestDir; then
+mkdir CaseSensitiveTestDir
+fi
+
+if test -d casesensitivetestdir
 then
     echo "$as_me:$LINENO: result: yes" >&5
 echo "${ECHO_T}yes" >&6
@@ -3009,6 +3013,7 @@ else
 echo "${ECHO_T}no" >&6
        BUILDEXEEXT=$EXEEXT
 fi
+rmdir CaseSensitiveTestDir
 
 case $MACHDEP in
 bsdos*)
index e24f73cb8e843bde0cb0d10ac1f9ac07fc42c0cd..cd03c1d7736a27dda7fdc828f88350db48de1d1c 100644 (file)
@@ -253,7 +253,11 @@ AC_MSG_RESULT($EXEEXT)
 # case we give a warning if no ext is given
 AC_SUBST(BUILDEXEEXT)
 AC_MSG_CHECKING(for case-insensitive build directory)
-if test -d "${srcdir}/python"
+if test ! -d CaseSensitiveTestDir; then
+mkdir CaseSensitiveTestDir
+fi
+
+if test -d casesensitivetestdir
 then
     AC_MSG_RESULT(yes)
     BUILDEXEEXT=.exe
@@ -261,6 +265,7 @@ else
        AC_MSG_RESULT(no)
        BUILDEXEEXT=$EXEEXT
 fi
+rmdir CaseSensitiveTestDir
 
 case $MACHDEP in
 bsdos*)