[Python-checkins] CVS: distutils/distutils/command __init__.py,1.12,1.13

Greg Ward python-dev@python.org
Sun, 28 May 2000 16:49:06 -0700


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

Modified Files:
	__init__.py 
Log Message:
Changed order so 'clean' is right after the 'build' commands.

Index: __init__.py
===================================================================
RCS file: /cvsroot/python/distutils/distutils/command/__init__.py,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -r1.12 -r1.13
*** __init__.py	2000/05/27 01:25:16	1.12
--- __init__.py	2000/05/28 23:49:03	1.13
***************
*** 4,8 ****
  commands."""
  
! __revision__ = "$Id: __init__.py,v 1.12 2000/05/27 01:25:16 gward Exp $"
  
  __all__ = ['build',
--- 4,8 ----
  commands."""
  
! __revision__ = "$Id: __init__.py,v 1.13 2000/05/28 23:49:03 gward Exp $"
  
  __all__ = ['build',
***************
*** 11,14 ****
--- 11,15 ----
             'build_clib',
             'build_scripts',
+            'clean',
             'install',
             'install_lib',
***************
*** 16,20 ****
             'install_scripts',
             'install_data',
-            'clean',
             'sdist',
             'bdist',
--- 17,20 ----