mirror of
https://github.com/python/cpython.git
synced 2025-11-01 14:11:41 +00:00
Check in patch #102971: if library_dirs is a string, split it using
os.pathsep
This commit is contained in:
parent
9d56cd100e
commit
705a3ada6f
1 changed files with 2 additions and 0 deletions
|
|
@ -149,6 +149,8 @@ def finalize_options (self):
|
||||||
self.libraries = []
|
self.libraries = []
|
||||||
if self.library_dirs is None:
|
if self.library_dirs is None:
|
||||||
self.library_dirs = []
|
self.library_dirs = []
|
||||||
|
elif type(self.library_dirs) is StringType:
|
||||||
|
self.library_dirs = string.split(self.library_dirs, os.pathsep)
|
||||||
if self.rpath is None:
|
if self.rpath is None:
|
||||||
self.rpath = []
|
self.rpath = []
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue