Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
setuptools
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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jérome Perrin
setuptools
Commits
d0303ebc
Commit
d0303ebc
authored
Feb 15, 2012
by
Éric Araujo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix parsing of build_ext --libraries option (#1326113)
parent
0dcd7425
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
8 deletions
+7
-8
command/build_ext.py
command/build_ext.py
+1
-2
tests/test_build_ext.py
tests/test_build_ext.py
+6
-6
No files found.
command/build_ext.py
View file @
d0303ebc
...
...
@@ -160,8 +160,7 @@ class build_ext (Command):
if
plat_py_include
!=
py_include
:
self
.
include_dirs
.
append
(
plat_py_include
)
if
isinstance
(
self
.
libraries
,
str
):
self
.
libraries
=
[
self
.
libraries
]
self
.
ensure_string_list
(
'libraries'
)
# Life is easier if we're not forever checking for None, so
# simplify these options to empty lists if unset
...
...
tests/test_build_ext.py
View file @
d0303ebc
...
...
@@ -150,21 +150,21 @@ class BuildExtTestCase(support.TempdirManager,
# make sure cmd.libraries is turned into a list
# if it's a string
cmd
=
build_ext
(
dist
)
cmd
.
libraries
=
'my_lib'
cmd
.
libraries
=
'my_lib
, other_lib lastlib
'
cmd
.
finalize_options
()
self
.
assertEqual
(
cmd
.
libraries
,
[
'my_lib'
])
self
.
assertEqual
(
cmd
.
libraries
,
[
'my_lib'
,
'other_lib'
,
'lastlib'
])
# make sure cmd.library_dirs is turned into a list
# if it's a string
cmd
=
build_ext
(
dist
)
cmd
.
library_dirs
=
'my_lib_dir
'
cmd
.
library_dirs
=
'my_lib_dir
%sother_lib_dir'
%
os
.
pathsep
cmd
.
finalize_options
()
self
.
assert
True
(
'my_lib_dir'
in
cmd
.
library_dirs
)
self
.
assert
Equal
(
cmd
.
library_dirs
,
[
'my_lib_dir'
,
'other_lib_dir'
]
)
# make sure rpath is turned into a list
# if it's a
list of os.pathsep's paths
# if it's a
string
cmd
=
build_ext
(
dist
)
cmd
.
rpath
=
os
.
pathsep
.
join
([
'one'
,
'two'
])
cmd
.
rpath
=
'one%stwo'
%
os
.
pathsep
cmd
.
finalize_options
()
self
.
assertEqual
(
cmd
.
rpath
,
[
'one'
,
'two'
])
...
...
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