Patch #414775: Add --skip-build option to bdist command.

This commit is contained in:
Martin v. Löwis 2002-01-12 11:27:42 +00:00
parent cdc4451222
commit 9668b933e3
5 changed files with 21 additions and 3 deletions

View file

@ -40,8 +40,12 @@ class bdist (Command):
('dist-dir=', 'd',
"directory to put final built distributions in "
"[default: dist]"),
('skip-build', None,
"skip rebuilding everything (for testing/debugging)"),
]
boolean_options = ['skip-build']
help_options = [
('help-formats', None,
"lists available distribution formats", show_formats),
@ -76,6 +80,7 @@ class bdist (Command):
self.plat_name = None
self.formats = None
self.dist_dir = None
self.skip_build = 0
# initialize_options()