[Firebug-cvs] firebug/project/zaurus build.xml,1.9,1.10
Brought to you by:
doolin
From: <do...@us...> - 2003-07-30 21:43:24
|
Update of /cvsroot/firebug/firebug/project/zaurus In directory sc8-pr-cvs1:/tmp/cvs-serv5788/project/zaurus Modified Files: build.xml Log Message: listenFB will now run from build.xml using ant if the build properties has the paths set correctly. Index: build.xml =================================================================== RCS file: /cvsroot/firebug/firebug/project/zaurus/build.xml,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** build.xml 30 Jul 2003 16:42:05 -0000 1.9 --- build.xml 30 Jul 2003 21:43:21 -0000 1.10 *************** *** 97,100 **** --- 97,107 ---- </target> + <target name="runp" depends="jar"> + <echo message=".\dist\tosmc.jar;${COMM}/comm.jar" /> + <java classpath=".\dist\tosmc.jar;${COMM}/comm.jar" + classname="net.tinyos.tostools.PortLister" fork="yes"> + </java> + </target> + |