summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/command/build_ext.py
diff options
context:
space:
mode:
authorGreg Ward <gward@python.net>2000-03-02 01:57:12 (GMT)
committerGreg Ward <gward@python.net>2000-03-02 01:57:12 (GMT)
commit76ec0d6d76bf2416d92a51f0317cfe1094e9e5f6 (patch)
tree21d5c8311d7503aba59375b308ca5706c2cf6ebf /Lib/distutils/command/build_ext.py
parent3ce77fd05ed00168f618b63401d770ccc4f04b09 (diff)
downloadcpython-76ec0d6d76bf2416d92a51f0317cfe1094e9e5f6.zip
cpython-76ec0d6d76bf2416d92a51f0317cfe1094e9e5f6.tar.gz
cpython-76ec0d6d76bf2416d92a51f0317cfe1094e9e5f6.tar.bz2
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
Diffstat (limited to 'Lib/distutils/command/build_ext.py')
-rw-r--r--Lib/distutils/command/build_ext.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/distutils/command/build_ext.py b/Lib/distutils/command/build_ext.py
index 6da02fe..bbdf062 100644
--- a/Lib/distutils/command/build_ext.py
+++ b/Lib/distutils/command/build_ext.py
@@ -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 = []