From: Michael W. Hudson Date: Mon, 25 Mar 2002 13:14:23 +0000 (+0000) Subject: Thomas said this was OK. X-Git-Tag: v2.2.1c2~28 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9123ef8a9baff6d87738f2ac57cf3a0bd4856cbd;p=thirdparty%2FPython%2Fcpython.git Thomas said this was OK. backport akuchling's checkin of revision 1.30 of bdist_wininst.py Add unlisted Boolean options. Thomas H., can you please check that I got this right? Bugfix candidate, unless Thomas notes a problem. --- diff --git a/Lib/distutils/command/bdist_wininst.py b/Lib/distutils/command/bdist_wininst.py index 7c34cffd85e0..7ef29f30b63b 100644 --- a/Lib/distutils/command/bdist_wininst.py +++ b/Lib/distutils/command/bdist_wininst.py @@ -38,7 +38,8 @@ class bdist_wininst (Command): "title to display on the installer background instead of default"), ] - boolean_options = ['keep-temp'] + boolean_options = ['keep-temp', 'no-target-compile', 'no-target-optimize', + 'skip-build'] def initialize_options (self): self.bdist_dir = None