Update of /cvsroot/jython/jython
In directory slayer.i.sourceforge.net:/tmp/cvs-serv23459
Modified Files:
build.xml
Log Message:
Added copying and jar'ing of ucnhash.dat
Index: build.xml
===================================================================
RCS file: /cvsroot/jython/jython/build.xml,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** build.xml 2000/11/24 17:04:20 1.2
--- build.xml 2000/12/04 21:38:20 1.3
***************
*** 67,74 ****
excludes="org/python/parser/python.java,${exludejava2files}"
/>
</target>
<target name="jar" depends="compile">
! <jar jarfile="jython.jar" basedir="${outputDir}" includes="**/*.class" />
</target>
--- 67,79 ----
excludes="org/python/parser/python.java,${exludejava2files}"
/>
+
+ <copy file="org/python/modules/ucnhash.dat"
+ todir="${outputDir}/org/python/modules" />
</target>
<target name="jar" depends="compile">
! <jar jarfile="jython.jar"
! basedir="${outputDir}"
! includes="**/*.class,**/ucnhash.dat" />
</target>
|