summaryrefslogtreecommitdiff
path: root/Lib/distutils/command/install_lib.py
diff options
context:
space:
mode:
authorGreg Ward <gward@python.net>2000-09-25 01:41:15 +0000
committerGreg Ward <gward@python.net>2000-09-25 01:41:15 +0000
commitda8286c71cb53981ac72a2103ea159d3575f947f (patch)
tree0765a43f7c7681a01f615278de923ee33675f14a /Lib/distutils/command/install_lib.py
parente2f8949aefe9b39c45bb679fb18b386e7b08feeb (diff)
downloadcpython-da8286c71cb53981ac72a2103ea159d3575f947f.tar.gz
Added 'boolean_options' list to support config file parsing.
Diffstat (limited to 'Lib/distutils/command/install_lib.py')
-rw-r--r--Lib/distutils/command/install_lib.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/distutils/command/install_lib.py b/Lib/distutils/command/install_lib.py
index b104fa9cfc..a603b4f59e 100644
--- a/Lib/distutils/command/install_lib.py
+++ b/Lib/distutils/command/install_lib.py
@@ -19,6 +19,8 @@ class install_lib (Command):
('skip-build', None, "skip the build steps"),
]
+ boolean_options = ['force', 'compile', 'optimize', 'skip-build']
+
def initialize_options (self):
# let the 'install' command dictate our installation directory