From: Greg Ward Date: Fri, 10 Mar 2000 02:02:44 +0000 (+0000) Subject: Catch up with change to CCompiler API: call 'create_static_lib()', not X-Git-Tag: v1.6a1~247 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=92f33770788f4fcb32be54014b43ccdeb8f20332;p=python Catch up with change to CCompiler API: call 'create_static_lib()', not 'link_static_lib()'. --- diff --git a/Lib/distutils/command/build_clib.py b/Lib/distutils/command/build_clib.py index c49e3ca737..6560fb4774 100644 --- a/Lib/distutils/command/build_clib.py +++ b/Lib/distutils/command/build_clib.py @@ -190,9 +190,9 @@ class build_clib (Command): # Now "link" the object files together into a static library. # (On Unix at least, this isn't really linking -- it just # builds an archive. Whatever.) - self.compiler.link_static_lib (objects, lib_name, - output_dir=self.build_clib, - debug=self.debug) + self.compiler.create_static_lib (objects, lib_name, + output_dir=self.build_clib, + debug=self.debug) # for libraries