Renamed 'build_lib' command to 'build_clib':

* replaced build_lib.py with build_clib.py
  * renamed the class in build_clib.py
  * changed all references to 'build_lib' command in other command classes
This commit is contained in:
Greg Ward 2000-03-02 01:57:12 +00:00
parent 3ce77fd05e
commit 76ec0d6d76
4 changed files with 7 additions and 209 deletions

View file

@ -166,9 +166,9 @@ class build_ext (Command):
self.compiler.set_link_objects (self.link_objects)
if self.distribution.libraries:
build_lib = self.find_peer ('build_lib')
self.libraries = build_lib.get_library_names () or []
self.library_dirs = [build_lib.build_clib]
build_clib = self.find_peer ('build_clib')
self.libraries = build_clib.get_library_names () or []
self.library_dirs = [build_clib.build_clib]
else:
self.libraries = []
self.library_dirs = []