Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
c5ee3caa
Commit
c5ee3caa
authored
Sep 12, 2016
by
Martin Panter
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue #28066: Fix include search directory logic for out-of-tree builds
parent
44c19ecc
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
2 deletions
+5
-2
Misc/NEWS
Misc/NEWS
+3
-0
configure
configure
+1
-1
configure.ac
configure.ac
+1
-1
No files found.
Misc/NEWS
View file @
c5ee3caa
...
...
@@ -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
...
...
configure
View file @
c5ee3caa
...
...
@@ -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
...
...
configure.ac
View file @
c5ee3caa
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment