Added 'boolean_options' list to support config file parsing.
diff --git a/Lib/distutils/command/install.py b/Lib/distutils/command/install.py
index 573e074..4ad652d 100644
--- a/Lib/distutils/command/install.py
+++ b/Lib/distutils/command/install.py
@@ -106,6 +106,8 @@
          "filename in which to record list of installed files"),
         ]
 
+    boolean_options = ['force', 'skip-build']
+
 
     def initialize_options (self):