summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorTrent Nelson <trent@trent.me>2012-10-16 12:51:24 (GMT)
committerTrent Nelson <trent@trent.me>2012-10-16 12:51:24 (GMT)
commit4d4ec6502d6aec31284cf2f68d81c64fcedb1049 (patch)
treec09fbdb6f1a59f286ccdc1199c7a86a7dec144d7 /configure
parentc101bf32c4011a3c7f3249b8c15bcf95b944095b (diff)
parent9effe699b7858a4a654b34915bc0e2cbec0de1f3 (diff)
downloadcpython-4d4ec6502d6aec31284cf2f68d81c64fcedb1049.zip
cpython-4d4ec6502d6aec31284cf2f68d81c64fcedb1049.tar.gz
cpython-4d4ec6502d6aec31284cf2f68d81c64fcedb1049.tar.bz2
Merge issue #15819: additional fixes for out-of-tree builds from read-only src.
Specifically, make sure the 'Object', 'Python' and 'Include' directories in the build directory take precedence over the source directory if we're an out-of-tree build. Fix typeslots.inc so that it gets generated into the build directory. In addition, for 3.3, make sure importlib.h gets generated into the build directory.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure20
1 files changed, 20 insertions, 0 deletions
diff --git a/configure b/configure
index 31fc3d6..843b141 100755
--- a/configure
+++ b/configure
@@ -714,6 +714,8 @@ HAS_HG
HGBRANCH
HGTAG
HGVERSION
+BASECPPFLAGS
+BUILDDIR
target_alias
host_alias
build_alias
@@ -2719,6 +2721,24 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
+BUILDDIR="`pwd`"
+
+
+if test "$srcdir" != "$BUILDDIR"; then
+ # If we're building out-of-tree, we need to make sure the following
+ # resources get picked up before their $srcdir counterparts.
+ # Objects/ -> typeslots.inc
+ # Include/ -> Python-ast.h, graminit.h
+ # Python/ -> importlib.h
+ # (A side effect of this is that these resources will automatically be
+ # regenerated when building out-of-tree, regardless of whether or not
+ # the $srcdir counterpart is up-to-date. This is an acceptable trade
+ # off.)
+ BASECPPFLAGS="-IObjects -IInclude -IPython"
+else
+ BASECPPFLAGS=""
+fi
+