From: Skip Montanaro Date: Fri, 7 Feb 2003 15:54:52 +0000 (+0000) Subject: backport of a tiny part of patch 557719 - just enough to allow the BUILDEXE X-Git-Tag: v2.2.3c1~148 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a13a8226bf556061d867500d78b89168b792c0e1;p=thirdparty%2FPython%2Fcpython.git backport of a tiny part of patch 557719 - just enough to allow the BUILDEXE Makefile variable to be set properly when doing out-of-tree builds. --- diff --git a/configure b/configure index 2318cd985dbb..b878e192c969 100755 --- a/configure +++ b/configure @@ -1340,7 +1340,7 @@ echo "$ac_t""$EXEEXT" 1>&6 echo $ac_n "checking for case-insensitive build directory""... $ac_c" 1>&6 echo "configure:1343: checking for case-insensitive build directory" >&5 -if test -d "python" +if test -d "${srcdir}/python" then echo "$ac_t""yes" 1>&6 BUILDEXEEXT=.exe diff --git a/configure.in b/configure.in index 1e2f25e3bc2f..bcf29613cb77 100644 --- a/configure.in +++ b/configure.in @@ -209,7 +209,7 @@ 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 "python" +if test -d "${srcdir}/python" then AC_MSG_RESULT(yes) BUILDEXEEXT=.exe