diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2002-03-21 23:27:54 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2002-03-21 23:27:54 (GMT) |
commit | 5de82a855eba194ac15052ae3d850780f04c0dfc (patch) | |
tree | 293cc5f14cba5877287d5df1b3f5bd3801e6c985 /Lib/distutils/command | |
parent | 562baabb61d1ecdeddf8b1df5ece1ea3400d7f0d (diff) | |
download | cpython-5de82a855eba194ac15052ae3d850780f04c0dfc.zip cpython-5de82a855eba194ac15052ae3d850780f04c0dfc.tar.gz cpython-5de82a855eba194ac15052ae3d850780f04c0dfc.tar.bz2 |
[Bug #517451] bdist_rpm didn't list all of its Boolean options.
(Someone should check the other commands for this same error.)
Bugfix candidate.
Diffstat (limited to 'Lib/distutils/command')
-rw-r--r-- | Lib/distutils/command/bdist_rpm.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/command/bdist_rpm.py b/Lib/distutils/command/bdist_rpm.py index 037ed9e..4bc2561 100644 --- a/Lib/distutils/command/bdist_rpm.py +++ b/Lib/distutils/command/bdist_rpm.py @@ -95,7 +95,7 @@ class bdist_rpm (Command): "RPM 2 compatibility mode"), ] - boolean_options = ['keep-temp', 'rpm2-mode'] + boolean_options = ['keep-temp', 'use-rpm-opt-flags', 'rpm3-mode'] negative_opt = {'no-keep-temp': 'keep-temp', 'no-rpm-opt-flags': 'use-rpm-opt-flags', |