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
11a86ffe
Commit
11a86ffe
authored
Sep 12, 2016
by
Martin Panter
Browse files
Options
Browse Files
Download
Plain Diff
Issue #28066: Merge srcdir fix from 3.5
parents
503ba3ed
c5ee3caa
Changes
3
Hide 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 @
11a86ffe
...
...
@@ -872,6 +872,9 @@ C API
Build
-----
- Issue #28066: Fix the logic that searches build directories for generated
include files when building outside the source tree.
- Issue #27442: Expose the Android API level that python was built against, in
sysconfig.get_config_vars() as '
ANDROID_API_LEVEL
'.
...
...
configure
View file @
11a86ffe
...
...
@@ -2679,7 +2679,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 @
11a86ffe
...
...
@@ -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