diff options
| author | Éric Araujo <merwok@netwok.org> | 2011-08-29 21:48:39 +0200 |
|---|---|---|
| committer | Éric Araujo <merwok@netwok.org> | 2011-08-29 21:48:39 +0200 |
| commit | 8cd4035750552f84c14fd0d799aa848c643aae77 (patch) | |
| tree | 30082e15cf2e9caf9e526020dcb89957beeaebe8 /command/bdist_dumb.py | |
| parent | 3c9e9264850398d6684b56d838fe120c0fbbb97a (diff) | |
| download | python-setuptools-git-8cd4035750552f84c14fd0d799aa848c643aae77.tar.gz | |
Make bdist_* commands respect --skip-build passed to bdist (#10946)
Diffstat (limited to 'command/bdist_dumb.py')
| -rw-r--r-- | command/bdist_dumb.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/command/bdist_dumb.py b/command/bdist_dumb.py index 170e8894..1ab09d16 100644 --- a/command/bdist_dumb.py +++ b/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: |
