[Python-checkins] CVS: distutils/distutils/command install.py,1.51,1.52

Greg Ward python-dev@python.org
Mon, 2 Oct 2000 20:31:55 -0700


Update of /cvsroot/python/distutils/distutils/command
In directory slayer.i.sourceforge.net:/tmp/cvs-serv23078

Modified Files:
	install.py 
Log Message:
Fixed so --no-compile is a negative alias for --compile.

Index: install.py
===================================================================
RCS file: /cvsroot/python/distutils/distutils/command/install.py,v
retrieving revision 1.51
retrieving revision 1.52
diff -C2 -r1.51 -r1.52
*** install.py	2000/10/02 02:16:04	1.51
--- install.py	2000/10/03 03:31:52	1.52
***************
*** 117,120 ****
--- 117,121 ----
  
      boolean_options = ['force', 'skip-build']
+     negative_opt = {'no-compile' : 'compile'}