]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fixed so --no-compile is a negative alias for --compile.
authorGreg Ward <gward@python.net>
Tue, 3 Oct 2000 03:31:52 +0000 (03:31 +0000)
committerGreg Ward <gward@python.net>
Tue, 3 Oct 2000 03:31:52 +0000 (03:31 +0000)
Lib/distutils/command/install.py

index 303ae4c02da90acb8396097595b9e308a147c768..330f3248679f0f95065de8fd1b18a330af794bdb 100644 (file)
@@ -116,6 +116,7 @@ class install (Command):
         ]
 
     boolean_options = ['force', 'skip-build']
+    negative_opt = {'no-compile' : 'compile'}
 
 
     def initialize_options (self):