summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorGreg Ward <gward@python.net>2000-03-29 02:18:39 (GMT)
committerGreg Ward <gward@python.net>2000-03-29 02:18:39 (GMT)
commitab9d08ce654be8f555b2a8a08ae56c1e63ba2fec (patch)
treec8780f3111668980e096263a36548693a1dd92c7 /Lib
parente5dfba5e0fc3f535b58b09ca6ec489562586ceb8 (diff)
downloadcpython-ab9d08ce654be8f555b2a8a08ae56c1e63ba2fec.zip
cpython-ab9d08ce654be8f555b2a8a08ae56c1e63ba2fec.tar.gz
cpython-ab9d08ce654be8f555b2a8a08ae56c1e63ba2fec.tar.bz2
Added 'build_clib'; replaced 'install_py' and 'install_ext' with 'install_lib'.
Diffstat (limited to 'Lib')
-rw-r--r--Lib/distutils/command/__init__.py4
1 files changed, 2 insertions, 2 deletions
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 @@ __revision__ = "$Id$"
__all__ = ['build',
'build_py',
'build_ext',
+ 'build_clib',
'install',
- 'install_py',
- 'install_ext',
+ 'install_lib',
'clean',
'sdist',
]