Commit cc623a25 authored by Greg Ward's avatar Greg Ward

Lyle Johnson: pass in temp directory as 'build_temp' argument when calling

'link_shared_object()'.
parent bfc79d64
...@@ -430,7 +430,8 @@ class build_ext (Command): ...@@ -430,7 +430,8 @@ class build_ext (Command):
library_dirs=ext.library_dirs, library_dirs=ext.library_dirs,
runtime_library_dirs=ext.runtime_library_dirs, runtime_library_dirs=ext.runtime_library_dirs,
extra_postargs=extra_args, extra_postargs=extra_args,
debug=self.debug) debug=self.debug,
build_temp=self.build_temp)
# build_extensions () # build_extensions ()
......
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