diff options
author | Greg Ward <gward@python.net> | 2000-06-28 01:29:37 (GMT) |
---|---|---|
committer | Greg Ward <gward@python.net> | 2000-06-28 01:29:37 (GMT) |
commit | cc623a25740e91891440bb642d59a889c3a004a2 (patch) | |
tree | 7bd1aabc582bcdba3764683ccab107c20ba84fac | |
parent | bfc79d644adff429c51c90c21a0126d2ab983b32 (diff) | |
download | cpython-cc623a25740e91891440bb642d59a889c3a004a2.zip cpython-cc623a25740e91891440bb642d59a889c3a004a2.tar.gz cpython-cc623a25740e91891440bb642d59a889c3a004a2.tar.bz2 |
Lyle Johnson: pass in temp directory as 'build_temp' argument when calling
'link_shared_object()'.
-rw-r--r-- | Lib/distutils/command/build_ext.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/distutils/command/build_ext.py b/Lib/distutils/command/build_ext.py index f8aa91c..adf85d3 100644 --- a/Lib/distutils/command/build_ext.py +++ b/Lib/distutils/command/build_ext.py @@ -430,7 +430,8 @@ class build_ext (Command): library_dirs=ext.library_dirs, runtime_library_dirs=ext.runtime_library_dirs, extra_postargs=extra_args, - debug=self.debug) + debug=self.debug, + build_temp=self.build_temp) # build_extensions () |