Kaydet (Commit) 705a3ada authored tarafından Andrew M. Kuchling's avatar Andrew M. Kuchling

Check in patch #102971: if library_dirs is a string, split it using

   os.pathsep
üst 9d56cd10
......@@ -149,6 +149,8 @@ class build_ext (Command):
self.libraries = []
if self.library_dirs is None:
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:
self.rpath = []
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment