Update of /cvsroot/firebug/firebug/project/zaurus
In directory sc8-pr-cvs1:/tmp/cvs-serv25817
Modified Files:
build.xml
Log Message:
The run target for the ant build file now
works correctly when the TINYOSJAR variable is properly
set in a local build.properties file. build.properties
is used to account for variations in local configurations
of tiny, java etc., and should not be added to the
cvs repository.
Index: build.xml
===================================================================
RCS file: /cvsroot/firebug/firebug/project/zaurus/build.xml,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** build.xml 2 Jul 2003 22:35:53 -0000 1.3
--- build.xml 2 Jul 2003 22:48:52 -0000 1.4
***************
*** 71,80 ****
<target name="run" depends="jar">
! <echo message="Running Listener: java -classpath ${classpath} org.firebug.ListenRawFB"/>
! <!--
! <java classpath="${dist}/firebug.jar" classname="org.firebug.ListenRawFB" fork="yes"/>
! -->
! <java classpath=".\dist\firebug.jar;C:\jdk1.3.1_01\lib\comm.jar" classname="org.firebug.ListenRawFB" fork="yes">
! <arg value="COM1"/>
</java>
</target>
--- 71,77 ----
<target name="run" depends="jar">
! <echo message=".\dist\tosmc.jar;${TINYOSJAR}" />
! <java classpath=".\dist\tosmc.jar;${TINYOSJAR}/tinyos.jar"
! classname="isis.nest.messageCenter.CenterFrame" fork="yes">
</java>
</target>
|