Update of /cvsroot/jython/jython/installer
In directory slayer.i.sourceforge.net:/tmp/cvs-serv5446
Modified Files:
mklist.py
Log Message:
Special handling of site.py. It is taken from Lib, but is not installed
in the core package but in the Library package.
Index: mklist.py
===================================================================
RCS file: /cvsroot/jython/jython/installer/mklist.py,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** mklist.py 2000/11/27 21:39:22 1.4
--- mklist.py 2000/12/06 21:27:49 1.5
***************
*** 162,166 ****
comment("special library modules")
! listfiles(None, "Lib", '*.py', 'pawt/*.py')
comment("Docs")
--- 162,166 ----
comment("special library modules")
! listfiles(None, "Lib", '*.py', 'pawt/*.py', exclude=["site.py"])
comment("Docs")
***************
*** 196,199 ****
--- 196,200 ----
comment("Library modules from CPython2.0")
print "t Lib/LICENSE %s\LICENSE.txt" % PYTHONDIR
+ listfiles(None, "Lib", 'site.py')
listfiles(PYTHONDIR, "Lib", "pstats.py", "code.py", "codecs.py")
listfiles(PYTHONDIR, "Lib", "sre*.py")
|