]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Patch from Perry Stoll: pass 'build_info' to link method.
authorGreg Ward <gward@python.net>
Sun, 29 Aug 1999 18:18:26 +0000 (18:18 +0000)
committerGreg Ward <gward@python.net>
Sun, 29 Aug 1999 18:18:26 +0000 (18:18 +0000)
Lib/distutils/command/build_ext.py

index cb9da68dd91196e7982e6678ba487a600ec70fd0..a0464b4ea08caa2401305ab1755e49b671f0ca96 100644 (file)
@@ -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 ()