commit | a9d37835adbbb209a4207e16492a75ef016b3c39 | [log] [tgz] |
---|---|---|
author | Greg Ward <gward@python.net> | Tue Oct 03 03:31:52 2000 +0000 |
committer | Greg Ward <gward@python.net> | Tue Oct 03 03:31:52 2000 +0000 |
tree | 75b6bba93d0cfcc20b3ca70748f3e13bb821192b | |
parent | 9216cfe7ba0257f10790f919e50283114a3476dd [diff] [blame] |
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 303ae4c..330f324 100644 --- a/Lib/distutils/command/install.py +++ b/Lib/distutils/command/install.py
@@ -116,6 +116,7 @@ ] boolean_options = ['force', 'skip-build'] + negative_opt = {'no-compile' : 'compile'} def initialize_options (self):