From a9d37835adbbb209a4207e16492a75ef016b3c39 Mon Sep 17 00:00:00 2001 From: Greg Ward Date: Tue, 3 Oct 2000 03:31:52 +0000 Subject: Fixed so --no-compile is a negative alias for --compile. --- Lib/distutils/command/install.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Lib/distutils/command/install.py b/Lib/distutils/command/install.py index 303ae4c..330f324 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): -- cgit v0.12