From 92f33770788f4fcb32be54014b43ccdeb8f20332 Mon Sep 17 00:00:00 2001 From: Greg Ward Date: Fri, 10 Mar 2000 02:02:44 +0000 Subject: Catch up with change to CCompiler API: call 'create_static_lib()', not 'link_static_lib()'. --- Lib/distutils/command/build_clib.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Lib/distutils/command/build_clib.py b/Lib/distutils/command/build_clib.py index c49e3ca..6560fb4 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 -- cgit v0.12