... oops., fighting with ns6 mailer :(
>- below by the way is the complete build.xml file
>
<?xml version="1.0" encoding="UTF-8"?>
<!-- $Id: build.xml,v 1.1.1.1 2002/03/08 17:17:33 kkonaka Exp $ -->
<project basedir="." default="doit">
<target name="doit">
<tstamp/>
<mkdir dir="build"/>
<mkdir dir="boot"/> <!-- contains modified java.lang.ClassLoader for verbose
tracing -->
<javac classpath="boot" debug="on" destdir="boot" srcdir="boot"/>
<javac classpath="build" debug="on" destdir="build" srcdir="src"/>
<java classname="Win2kHang" fork="yes">
<jvmarg value="-Djava.library.path=lib"/>
<jvmarg value="-Xbootclasspath/p:boot"/>
<classpath>
<pathelement path="build"/>
</classpath>
<arg value="abc"/>
</java>
</target>
<target name="clean">
<delete dir="build"/>
<delete>
<fileset dir="." includes="**/*~" defaultexcludes="no"/>
</delete>
</target>
</project>
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>