diff options
| author | Éric Araujo <merwok@netwok.org> | 2011-08-29 23:01:45 (GMT) |
|---|---|---|
| committer | Éric Araujo <merwok@netwok.org> | 2011-08-29 23:01:45 (GMT) |
| commit | ff29ff88314badd8ba868de8cce5684d0f4611a4 (patch) | |
| tree | 86a3a22d6b1ab01d3a0d9d6de7100c82e1cbc327 /Lib/distutils/command/bdist_dumb.py | |
| parent | 5e48c78ecfca75199b250a5d31577ef0f89db800 (diff) | |
| parent | fbe37dfffe501973b1e998bca948748097857179 (diff) | |
| download | cpython-ff29ff88314badd8ba868de8cce5684d0f4611a4.zip cpython-ff29ff88314badd8ba868de8cce5684d0f4611a4.tar.gz cpython-ff29ff88314badd8ba868de8cce5684d0f4611a4.tar.bz2 | |
Merge fix for #10946 from 3.2
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: |
