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 c49e3ca..6560fb4 100644
--- a/Lib/distutils/command/build_clib.py
+++ b/Lib/distutils/command/build_clib.py
@@ -190,9 +190,9 @@
             # 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