You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@forrest.apache.org by ni...@apache.org on 2002/05/17 12:55:55 UTC

cvs commit: xml-forrest build.bat build.sh

nicolaken    02/05/17 03:55:55

  Modified:    .        build.bat build.sh
  Log:
  Remove xmllogger for Ant since it only slows down performance.
  
  Revision  Changes    Path
  1.3       +2 -2      xml-forrest/build.bat
  
  Index: build.bat
  ===================================================================
  RCS file: /home/cvs/xml-forrest/build.bat,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- build.bat	23 Mar 2002 17:13:13 -0000	1.2
  +++ build.bat	17 May 2002 10:55:55 -0000	1.3
  @@ -7,7 +7,7 @@
   for %%i in (.\lib\endorsed\*.jar) do call appendcp.bat %%i
   for %%i in (.\tools\centipede\lib\*.jar) do call appendcp.bat %%i
   
  -call %ANT_HOME%\bin\ant -listener org.apache.tools.ant.XmlLogger %1 %2 %3 %4 %5 %6 %7 %8 %9
  +call %ANT_HOME%\bin\ant %1 %2 %3 %4 %5 %6 %7 %8 %9
   
   set ANT_HOME=%OLD_ANT_HOME%
  -set CLASSPATH=%OLD_CLASSPATH%
  \ No newline at end of file
  +set CLASSPATH=%OLD_CLASSPATH%
  
  
  
  1.3       +1 -1      xml-forrest/build.sh
  
  Index: build.sh
  ===================================================================
  RCS file: /home/cvs/xml-forrest/build.sh,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- build.sh	23 Mar 2002 17:13:13 -0000	1.2
  +++ build.sh	17 May 2002 10:55:55 -0000	1.3
  @@ -29,7 +29,7 @@
   CLASSPATH="`echo ./lib/endorsed/*.jar | tr ' ' $S``echo ./tools/centipede/lib/*.jar | tr ' ' $S`"
   export CLASSPATH
   
  -$PWD/./tools/ant/bin/ant -listener org.apache.tools.ant.XmlLogger $@ 
  +$PWD/./tools/ant/bin/ant $@ 
   
   unset CLASSPATH