diff options
author | Greg Ward <gward@python.net> | 2000-09-25 01:41:15 (GMT) |
---|---|---|
committer | Greg Ward <gward@python.net> | 2000-09-25 01:41:15 (GMT) |
commit | 99b032eaf24e1887f6451eceea7f1e24ced05a0f (patch) | |
tree | 759136a87badad9d9c87e9b6a3e4ff5180a2d9ed /Lib/distutils/command/install_scripts.py | |
parent | 817dc098efd0c2cba674cee32950fc5626e12881 (diff) | |
download | cpython-99b032eaf24e1887f6451eceea7f1e24ced05a0f.zip cpython-99b032eaf24e1887f6451eceea7f1e24ced05a0f.tar.gz cpython-99b032eaf24e1887f6451eceea7f1e24ced05a0f.tar.bz2 |
Added 'boolean_options' list to support config file parsing.
Diffstat (limited to 'Lib/distutils/command/install_scripts.py')
-rw-r--r-- | Lib/distutils/command/install_scripts.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/distutils/command/install_scripts.py b/Lib/distutils/command/install_scripts.py index d506f90..b8938c4 100644 --- a/Lib/distutils/command/install_scripts.py +++ b/Lib/distutils/command/install_scripts.py @@ -22,6 +22,9 @@ class install_scripts (Command): ('skip-build', None, "skip the build steps"), ] + boolean_options = ['force', 'skip-build'] + + def initialize_options (self): self.install_dir = None self.force = 0 |