[Python-checkins] CVS: distutils/distutils/command install_scripts.py,1.5,1.6

Greg Ward python-dev@python.org
Fri, 26 May 2000 18:33:51 -0700


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

Modified Files:
	install_scripts.py 
Log Message:
Tweaked description, help text.

Index: install_scripts.py
===================================================================
RCS file: /cvsroot/python/distutils/distutils/command/install_scripts.py,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -r1.5 -r1.6
*** install_scripts.py	2000/05/25 01:19:18	1.5
--- install_scripts.py	2000/05/27 01:33:49	1.6
***************
*** 6,10 ****
  # contributed by Bastian Kleineidam
  
! __revision__ = "$Id: install_scripts.py,v 1.5 2000/05/25 01:19:18 gward Exp $"
  
  import os
--- 6,10 ----
  # contributed by Bastian Kleineidam
  
! __revision__ = "$Id: install_scripts.py,v 1.6 2000/05/27 01:33:49 gward Exp $"
  
  import os
***************
*** 12,21 ****
  from stat import ST_MODE
  
! class install_scripts(Command):
  
!     description = "install scripts"
  
      user_options = [
!         ('install-dir=', 'd', "directory to install to"),
          ('build-dir=','b', "build directory (where to install from)"),
          ('skip-build', None, "skip the build steps"),
--- 12,21 ----
  from stat import ST_MODE
  
! class install_scripts (Command):
  
!     description = "install scripts (Python or otherwise)"
  
      user_options = [
!         ('install-dir=', 'd', "directory to install scripts to"),
          ('build-dir=','b', "build directory (where to install from)"),
          ('skip-build', None, "skip the build steps"),