mirror of
https://github.com/python/cpython.git
synced 2025-07-19 01:05:26 +00:00
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:
parent
3ce77fd05e
commit
76ec0d6d76
4 changed files with 7 additions and 209 deletions
|
@ -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 = []
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue