diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2002-01-12 11:27:42 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2002-01-12 11:27:42 (GMT) |
commit | 9668b933e306f92aaab5a19a4316124b00978c48 (patch) | |
tree | 204c012e73ec778bd2ec46cf891354312f3650a9 /Lib/distutils/command/bdist_dumb.py | |
parent | cdc445122208cb90a59a468a7396b227e223c43a (diff) | |
download | cpython-9668b933e306f92aaab5a19a4316124b00978c48.zip cpython-9668b933e306f92aaab5a19a4316124b00978c48.tar.gz cpython-9668b933e306f92aaab5a19a4316124b00978c48.tar.bz2 |
Patch #414775: Add --skip-build option to bdist command.
Diffstat (limited to 'Lib/distutils/command/bdist_dumb.py')
-rw-r--r-- | Lib/distutils/command/bdist_dumb.py | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/Lib/distutils/command/bdist_dumb.py b/Lib/distutils/command/bdist_dumb.py index 8dfc327..dbe862b 100644 --- a/Lib/distutils/command/bdist_dumb.py +++ b/Lib/distutils/command/bdist_dumb.py @@ -30,9 +30,11 @@ class bdist_dumb (Command): "creating the distribution archive"), ('dist-dir=', 'd', "directory to put final built distributions in"), + ('skip-build', None, + "skip rebuilding everything (for testing/debugging)"), ] - boolean_options = ['keep-temp'] + boolean_options = ['keep-temp', 'skip-build'] default_format = { 'posix': 'gztar', 'nt': 'zip', } @@ -44,6 +46,7 @@ class bdist_dumb (Command): self.format = None self.keep_temp = 0 self.dist_dir = None + self.skip_build = 0 # initialize_options() @@ -71,10 +74,12 @@ class bdist_dumb (Command): def run (self): - self.run_command('build') + if not self.skip_build: + self.run_command('build') install = self.reinitialize_command('install', reinit_subcommands=1) install.root = self.bdist_dir + install.skip_build = self.skip_build self.announce("installing to %s" % self.bdist_dir) self.run_command('install') |