From 99b032eaf24e1887f6451eceea7f1e24ced05a0f Mon Sep 17 00:00:00 2001 From: Greg Ward Date: Mon, 25 Sep 2000 01:41:15 +0000 Subject: Added 'boolean_options' list to support config file parsing. --- Lib/distutils/command/build_ext.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'Lib/distutils/command/build_ext.py') diff --git a/Lib/distutils/command/build_ext.py b/Lib/distutils/command/build_ext.py index d578b846ac..7fdfd1458d 100644 --- a/Lib/distutils/command/build_ext.py +++ b/Lib/distutils/command/build_ext.py @@ -82,6 +82,8 @@ class build_ext (Command): "make SWIG create C++ files (default is C)"), ] + boolean_options = ['inplace', 'debug', 'force', 'swig-cpp'] + help_options = [ ('help-compiler', None, "list available compilers", show_compilers), -- cgit v1.2.1