Skip to content

Commit

Permalink
Issue python#28066: Fix include search directory logic for out-of-tre…
Browse files Browse the repository at this point in the history
…e builds
  • Loading branch information
vadmium committed Sep 12, 2016
1 parent 44c19ec commit c5ee3ca
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions Misc/NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -322,6 +322,9 @@ Windows
Build
-----

- Issue #28066: Fix the logic that searches build directories for generated
include files when building outside the source tree.

- Issue #27566: Fix clean target in freeze makefile (patch by Lisa Roach)

- Issue #27705: Update message in validate_ucrtbase.py
Expand Down
2 changes: 1 addition & 1 deletion configure
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ AC_PREREQ(2.65)
AC_INIT(python, PYTHON_VERSION, https://bugs.python.org/)

AC_SUBST(BASECPPFLAGS)
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
Expand Down

0 comments on commit c5ee3ca

Please sign in to comment.