From: Greg Ward Date: Tue, 3 Oct 2000 03:31:52 +0000 (+0000) Subject: Fixed so --no-compile is a negative alias for --compile. X-Git-Tag: v2.0c1~153 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a9d37835adbbb209a4207e16492a75ef016b3c39;p=thirdparty%2FPython%2Fcpython.git Fixed so --no-compile is a negative alias for --compile. --- diff --git a/Lib/distutils/command/install.py b/Lib/distutils/command/install.py index 303ae4c02da9..330f3248679f 100644 --- a/Lib/distutils/command/install.py +++ b/Lib/distutils/command/install.py @@ -116,6 +116,7 @@ class install (Command): ] boolean_options = ['force', 'skip-build'] + negative_opt = {'no-compile' : 'compile'} def initialize_options (self):