diff options
author | Éric Araujo <merwok@netwok.org> | 2011-08-30 14:21:15 (GMT) |
---|---|---|
committer | Éric Araujo <merwok@netwok.org> | 2011-08-30 14:21:15 (GMT) |
commit | d15b768ddb68fe82470d26bb2cc36699f4bc0b75 (patch) | |
tree | 314bac1cdca839976e5de93505d7173add150826 /Lib/distutils/command/bdist_dumb.py | |
parent | a514eb95f30306a11a14f8a3b9cbf229c6af6137 (diff) | |
parent | b9fe54cccc3798f089489ef1e7f9026a35d16d6b (diff) | |
download | cpython-d15b768ddb68fe82470d26bb2cc36699f4bc0b75.zip cpython-d15b768ddb68fe82470d26bb2cc36699f4bc0b75.tar.gz cpython-d15b768ddb68fe82470d26bb2cc36699f4bc0b75.tar.bz2 |
Branch merge
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: |