diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2002-03-21 23:44:01 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2002-03-21 23:44:01 (GMT) |
commit | da9f0bf4dd234a6686b77a40c6f70bd249944fc9 (patch) | |
tree | 543799fab3acf3ef5297a56295693193e7350965 /Lib/distutils/command/bdist_wininst.py | |
parent | 5de82a855eba194ac15052ae3d850780f04c0dfc (diff) | |
download | cpython-da9f0bf4dd234a6686b77a40c6f70bd249944fc9.zip cpython-da9f0bf4dd234a6686b77a40c6f70bd249944fc9.tar.gz cpython-da9f0bf4dd234a6686b77a40c6f70bd249944fc9.tar.bz2 |
Add unlisted Boolean options. Thomas H., can you please check that I
got this right?
Bugfix candidate, unless Thomas notes a problem.
Diffstat (limited to 'Lib/distutils/command/bdist_wininst.py')
-rw-r--r-- | Lib/distutils/command/bdist_wininst.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/distutils/command/bdist_wininst.py b/Lib/distutils/command/bdist_wininst.py index fe52f39..33dc28e 100644 --- a/Lib/distutils/command/bdist_wininst.py +++ b/Lib/distutils/command/bdist_wininst.py @@ -43,7 +43,8 @@ class bdist_wininst (Command): " or before deinstallation"), ] - boolean_options = ['keep-temp'] + boolean_options = ['keep-temp', 'no-target-compile', 'no-target-optimize', + 'skip-build'] def initialize_options (self): self.bdist_dir = None |