Commit 27eba5e8 authored by Andrew M. Kuchling's avatar Andrew M. Kuchling

Split the rpath argument into multiple paths, turning it into a list.

    This partially fixes bug #128930.
parent 30537da0
......@@ -151,8 +151,11 @@ class build_ext (Command):
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 = []
elif type(self.rpath) is StringType:
self.rpath = string.split(self.rpath, os.pathsep)
# for extensions under windows use different directories
# for Release and Debug builds.
......
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