diff options
author | Martin Panter <vadmium+py@gmail.com> | 2016-09-12 01:32:03 (GMT) |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2016-09-12 01:32:03 (GMT) |
commit | c5ee3caa807abeb14b586117ce36bc1c2a762390 (patch) | |
tree | d79da77b1a09d8dbeb0f2c9db0326e5ebfc4b096 /configure | |
parent | 44c19eccf9fd8258f8d939fe30b79b644b2c235a (diff) | |
download | cpython-c5ee3caa807abeb14b586117ce36bc1c2a762390.zip cpython-c5ee3caa807abeb14b586117ce36bc1c2a762390.tar.gz cpython-c5ee3caa807abeb14b586117ce36bc1c2a762390.tar.bz2 |
Issue #28066: Fix include search directory logic for out-of-tree builds
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2820,7 +2820,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu -if test "$abs_srcdir" != "$abs_builddir"; then +if test "$srcdir" != . -a "$srcdir" != "$(pwd)"; 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 |