From a13a8226bf556061d867500d78b89168b792c0e1 Mon Sep 17 00:00:00 2001 From: Skip Montanaro Date: Fri, 7 Feb 2003 15:54:52 +0000 Subject: [PATCH] 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. --- configure | 2 +- configure.in | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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 -- 2.47.3