diff options
author | Éric Araujo <merwok@netwok.org> | 2011-08-29 19:48:39 (GMT) |
---|---|---|
committer | Éric Araujo <merwok@netwok.org> | 2011-08-29 19:48:39 (GMT) |
commit | fbe37dfffe501973b1e998bca948748097857179 (patch) | |
tree | ad3327d3fddd94cd042c8d69f47a0948bfab09d9 /Lib/distutils/command/bdist_dumb.py | |
parent | aa26b275034c07784c4d64e9a2bc26c742577327 (diff) | |
download | cpython-fbe37dfffe501973b1e998bca948748097857179.zip cpython-fbe37dfffe501973b1e998bca948748097857179.tar.gz cpython-fbe37dfffe501973b1e998bca948748097857179.tar.bz2 |
Make bdist_* commands respect --skip-build passed to bdist (#10946)
Diffstat (limited to 'Lib/distutils/command/bdist_dumb.py')
-rw-r--r-- | Lib/distutils/command/bdist_dumb.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Lib/distutils/command/bdist_dumb.py b/Lib/distutils/command/bdist_dumb.py index 170e889..1ab09d1 100644 --- a/Lib/distutils/command/bdist_dumb.py +++ b/Lib/distutils/command/bdist_dumb.py @@ -47,7 +47,7 @@ class bdist_dumb(Command): self.format = None self.keep_temp = 0 self.dist_dir = None - self.skip_build = 0 + self.skip_build = None self.relative = 0 def finalize_options(self): @@ -65,7 +65,8 @@ class bdist_dumb(Command): self.set_undefined_options('bdist', ('dist_dir', 'dist_dir'), - ('plat_name', 'plat_name')) + ('plat_name', 'plat_name'), + ('skip_build', 'skip_build')) def run(self): if not self.skip_build: |