diff options
Diffstat (limited to 'Lib/distutils/command/install_lib.py')
-rw-r--r-- | Lib/distutils/command/install_lib.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/distutils/command/install_lib.py b/Lib/distutils/command/install_lib.py index b104fa9..a603b4f 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 |