commit | ab9d08ce654be8f555b2a8a08ae56c1e63ba2fec | [log] [tgz] |
---|---|---|
author | Greg Ward <gward@python.net> | Wed Mar 29 02:18:39 2000 +0000 |
committer | Greg Ward <gward@python.net> | Wed Mar 29 02:18:39 2000 +0000 |
tree | c8780f3111668980e096263a36548693a1dd92c7 | |
parent | e5dfba5e0fc3f535b58b09ca6ec489562586ceb8 [diff] |
Added 'build_clib'; replaced 'install_py' and 'install_ext' with 'install_lib'.
diff --git a/Lib/distutils/command/__init__.py b/Lib/distutils/command/__init__.py index d2b37a8..b7973c6 100644 --- a/Lib/distutils/command/__init__.py +++ b/Lib/distutils/command/__init__.py
@@ -8,9 +8,9 @@ __all__ = ['build', 'build_py', 'build_ext', + 'build_clib', 'install', - 'install_py', - 'install_ext', + 'install_lib', 'clean', 'sdist', ]