From: Greg Ward Date: Wed, 28 Jun 2000 01:29:37 +0000 (+0000) Subject: Lyle Johnson: pass in temp directory as 'build_temp' argument when calling X-Git-Tag: v2.0b1~1385 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=cc623a25740e91891440bb642d59a889c3a004a2;p=thirdparty%2FPython%2Fcpython.git Lyle Johnson: pass in temp directory as 'build_temp' argument when calling 'link_shared_object()'. --- diff --git a/Lib/distutils/command/build_ext.py b/Lib/distutils/command/build_ext.py index f8aa91cae34d..adf85d32871c 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 ()