[Python-checkins] CVS: python/dist/src setup.py,1.32,1.33

A.M. Kuchling akuchling@users.sourceforge.net
Wed, 28 Feb 2001 12:56:51 -0800


Update of /cvsroot/python/python/dist/src
In directory usw-pr-cvs1:/tmp/cvs-serv20329

Modified Files:
	setup.py 
Log Message:
Install the pydoc script


Index: setup.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/setup.py,v
retrieving revision 1.32
retrieving revision 1.33
diff -C2 -r1.32 -r1.33
*** setup.py	2001/02/28 19:49:57	1.32
--- setup.py	2001/02/28 20:56:49	1.33
***************
*** 601,605 ****
            # The struct module is defined here, because build_ext won't be
            # called unless there's at least one extension module defined.
!           ext_modules=[Extension('struct', ['structmodule.c'])]
          )
  
--- 601,608 ----
            # The struct module is defined here, because build_ext won't be
            # called unless there's at least one extension module defined.
!           ext_modules=[Extension('struct', ['structmodule.c'])],
! 
!           # Scripts to install
!           scripts = ['Tools/scripts/pydoc']
          )