[Python-checkins] CVS: distutils/distutils/command install_headers.py,NONE,1.1 __init__.py,1.11,1.12

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


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

Modified Files:
	__init__.py 
Added Files:
	install_headers.py 
Log Message:
Added 'install_headers' command to install C/C++ header files.


Index: __init__.py
===================================================================
RCS file: /cvsroot/python/distutils/distutils/command/__init__.py,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -r1.11 -r1.12
*** __init__.py	2000/05/25 01:19:18	1.11
--- __init__.py	2000/05/27 01:25:16	1.12
***************
*** 4,8 ****
  commands."""
  
! __revision__ = "$Id: __init__.py,v 1.11 2000/05/25 01:19:18 gward Exp $"
  
  __all__ = ['build',
--- 4,8 ----
  commands."""
  
! __revision__ = "$Id: __init__.py,v 1.12 2000/05/27 01:25:16 gward Exp $"
  
  __all__ = ['build',
***************
*** 13,16 ****
--- 13,17 ----
             'install',
             'install_lib',
+            'install_headers',
             'install_scripts',
             'install_data',