]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Lyle Johnson: pass in temp directory as 'build_temp' argument when calling
authorGreg Ward <gward@python.net>
Wed, 28 Jun 2000 01:29:37 +0000 (01:29 +0000)
committerGreg Ward <gward@python.net>
Wed, 28 Jun 2000 01:29:37 +0000 (01:29 +0000)
'link_shared_object()'.

Lib/distutils/command/build_ext.py

index f8aa91cae34dcdffe6da0ddaca3986d5bc7adf29..adf85d32871cb1017f5b1c97ee5c12884306f321 100644 (file)
@@ -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 ()