stefano 02/02/20 15:31:18 Modified: . build.bat Log: avoid recopying jars required for ant everytime (improves speed in subsequent calls) Revision Changes Path 1.17 +4 -4 xml-cocoon2/build.bat Index: build.bat =================================================================== RCS file: /home/cvs/xml-cocoon2/build.bat,v retrieving revision 1.16 retrieving revision 1.17 diff -u -r1.16 -r1.17 --- build.bat 31 Jan 2002 14:16:03 -0000 1.16 +++ build.bat 20 Feb 2002 23:31:18 -0000 1.17 @@ -2,13 +2,13 @@ rem ---------------------------------------------------------------------------- rem build.bat - Win32 Build Script for Apache Cocoon rem -rem $Id: build.bat,v 1.16 2002/01/31 14:16:03 cziegeler Exp $ +rem $Id: build.bat,v 1.17 2002/02/20 23:31:18 stefano Exp $ rem ---------------------------------------------------------------------------- rem ----- Copy Xalan and Xerces for the build system ------------------------ -copy lib\core\xerces*.jar tools\lib -copy lib\core\xalan*.jar tools\lib -copy lib\core\xml-api*.jar tools\lib +if not exist "tools\lib\xerces*.jar" copy lib\core\xerces*.jar tools\lib +if not exist "tools\lib\xalan*.jar" copy lib\core\xalan*.jar tools\lib +if not exist "tools\lib\xml-api*.jar" copy lib\core\xml-api*.jar tools\lib rem ----- Verify and Set Required Environment Variables ------------------------
---------------------------------------------------------------------- In case of troubles, e-mail: [EMAIL PROTECTED] To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]