From: Greg Ward Date: Sun, 29 Aug 1999 18:18:26 +0000 (+0000) Subject: Patch from Perry Stoll: pass 'build_info' to link method. X-Git-Tag: v1.6a1~960 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2f1b5bb905c2a8a1462833635e6d912a36eae1a9;p=thirdparty%2FPython%2Fcpython.git Patch from Perry Stoll: pass 'build_info' to link method. --- diff --git a/Lib/distutils/command/build_ext.py b/Lib/distutils/command/build_ext.py index cb9da68dd911..a0464b4ea08c 100644 --- a/Lib/distutils/command/build_ext.py +++ b/Lib/distutils/command/build_ext.py @@ -178,10 +178,9 @@ class BuildExt (Command): objects.extend (extra_objects) libraries = build_info.get ('libraries') library_dirs = build_info.get ('library_dirs') - ext_filename = self.extension_filename (extension_name) self.compiler.link_shared_object (objects, ext_filename, - libraries, library_dirs) + libraries, library_dirs, build_info) # build_extensions ()