summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/command/build.py
diff options
context:
space:
mode:
authorGreg Ward <gward@python.net>2000-01-30 18:34:15 (GMT)
committerGreg Ward <gward@python.net>2000-01-30 18:34:15 (GMT)
commit37bc81505379facad85a7c6ff273de0201f28656 (patch)
treef2c2208609ff73860b86da445fbb7669847b5bbc /Lib/distutils/command/build.py
parent4c67936e4eab6db332c32b51f45c91870fb58d90 (diff)
downloadcpython-37bc81505379facad85a7c6ff273de0201f28656.zip
cpython-37bc81505379facad85a7c6ff273de0201f28656.tar.gz
cpython-37bc81505379facad85a7c6ff273de0201f28656.tar.bz2
Added 'description' class attribute to every command class (to help the
'--help-commands' option). Shuffled imports around in a few command modules to avoid expensive up-front import of sysconfig (and resulting delays in generating list of all commands).
Diffstat (limited to 'Lib/distutils/command/build.py')
-rw-r--r--Lib/distutils/command/build.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/distutils/command/build.py b/Lib/distutils/command/build.py
index 1586e60..e6c87bf 100644
--- a/Lib/distutils/command/build.py
+++ b/Lib/distutils/command/build.py
@@ -12,6 +12,8 @@ from distutils.core import Command
class Build (Command):
+ description = "build everything needed to install"
+
options = [('build-base=', 'b',
"base directory for build library"),
('build-lib=', 'l',