Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
nexedi
cython
Commits
3573565a
Commit
3573565a
authored
Apr 12, 2016
by
Ian Henriksen
Committed by
Stefan Behnel
Jul 15, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Forward define macros without specified values properly
when they are provided as commented distutils directives.
parent
31e2afbc
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
Cython/Build/Dependencies.py
Cython/Build/Dependencies.py
+3
-1
No files found.
Cython/Build/Dependencies.py
View file @
3573565a
...
@@ -209,7 +209,9 @@ class DistutilsInfo(object):
...
@@ -209,7 +209,9 @@ class DistutilsInfo(object):
if
type
in
(
list
,
transitive_list
):
if
type
in
(
list
,
transitive_list
):
value
=
parse_list
(
value
)
value
=
parse_list
(
value
)
if
key
==
'define_macros'
:
if
key
==
'define_macros'
:
value
=
[
tuple
(
macro
.
split
(
'='
))
for
macro
in
value
]
value
=
[
tuple
(
macro
.
split
(
'='
))
if
'='
in
macro
else
(
macro
,
None
)
for
macro
in
value
]
self
.
values
[
key
]
=
value
self
.
values
[
key
]
=
value
elif
exn
is
not
None
:
elif
exn
is
not
None
:
for
key
in
distutils_settings
:
for
key
in
distutils_settings
:
...
...
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