diff options
author | Greg Ward <gward@python.net> | 2000-03-10 01:48:32 (GMT) |
---|---|---|
committer | Greg Ward <gward@python.net> | 2000-03-10 01:48:32 (GMT) |
commit | 036c805958577114c72167833ded53bd3f08edae (patch) | |
tree | 5b9570494bd1d2383653b4d539ccb8a19ace1961 /Lib/distutils/unixccompiler.py | |
parent | 329e4be05a0c9653ee2231841d62e90b3f8e5435 (diff) | |
download | cpython-036c805958577114c72167833ded53bd3f08edae.zip cpython-036c805958577114c72167833ded53bd3f08edae.tar.gz cpython-036c805958577114c72167833ded53bd3f08edae.tar.bz2 |
Renamed 'link_static_lib() to 'create_static_lib()'.
Diffstat (limited to 'Lib/distutils/unixccompiler.py')
-rw-r--r-- | Lib/distutils/unixccompiler.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Lib/distutils/unixccompiler.py b/Lib/distutils/unixccompiler.py index 35390de..0d2858d 100644 --- a/Lib/distutils/unixccompiler.py +++ b/Lib/distutils/unixccompiler.py @@ -140,11 +140,11 @@ class UnixCCompiler (CCompiler): # compile () - def link_static_lib (self, - objects, - output_libname, - output_dir=None, - debug=0): + def create_static_lib (self, + objects, + output_libname, + output_dir=None, + debug=0): (objects, output_dir) = self._fix_link_args (objects, output_dir, takes_libs=0) @@ -160,7 +160,7 @@ class UnixCCompiler (CCompiler): else: self.announce ("skipping %s (up-to-date)" % output_filename) - # link_static_lib () + # create_static_lib () def link_shared_lib (self, |