summaryrefslogtreecommitdiffstats
path: root/Lib/distutils
diff options
context:
space:
mode:
authorGreg Ward <gward@python.net>2000-06-28 01:29:37 (GMT)
committerGreg Ward <gward@python.net>2000-06-28 01:29:37 (GMT)
commitcc623a25740e91891440bb642d59a889c3a004a2 (patch)
tree7bd1aabc582bcdba3764683ccab107c20ba84fac /Lib/distutils
parentbfc79d644adff429c51c90c21a0126d2ab983b32 (diff)
downloadcpython-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()'.
Diffstat (limited to 'Lib/distutils')
-rw-r--r--Lib/distutils/command/build_ext.py3
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 ()