Return-Path: Mailing-List: contact ant-dev-help@jakarta.apache.org; run by ezmlm Delivered-To: mailing list ant-dev@jakarta.apache.org Received: (qmail 88828 invoked from network); 4 Dec 2000 12:54:15 -0000 Received: from unknown (HELO mailhost.experian.co.uk) (194.60.170.33) by locus.apache.org with SMTP; 4 Dec 2000 12:54:15 -0000 Received: from exchukthin01.experian.co.uk (unverified) by mailhost.experian.co.uk (Content Technologies SMTPRS 4.1.2) with ESMTP id for ; Mon, 4 Dec 2000 12:52:25 +0000 Received: by exchukthin01.experian.co.uk with Internet Mail Service (5.5.2650.21) id ; Mon, 4 Dec 2000 12:52:00 -0000 Message-ID: From: "Morrison, John" To: "'ant-dev@jakarta.apache.org'" Subject: Specify JAXP from env variables Date: Mon, 4 Dec 2000 12:51:59 -0000 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2650.21) Content-Type: multipart/mixed ; boundary="----_=_NextPart_000_01C05DF0.FD8CEF20" X-Spam-Rating: locus.apache.org 1.6.2 0/1000/N This message is in MIME format. Since your mail reader does not understand this format, some or all of this message may not be legible. ------_=_NextPart_000_01C05DF0.FD8CEF20 Content-Type: text/plain; charset="iso-8859-1" Hi, I've modified the batch file to simplify the building of tomcat and requirements from source. The only insert is... set CLASSPATH=%ANT_XML_CLASSPATH%;%JAXP_HOME%\%JAXP_PARSER_JAR%;%CLASSPATH% Hope you can commit this and (somebody with UNIX experience) bring the build.sh into synch? Thanks, John Morrison. ======================================================================= Information in this email and any attachments are confidential, and may not be copied or used by anyone other than the addressee, nor disclosed to any third party without our permission. There is no intention to create any legally binding contract or other commitment through the use of this email. Experian Limited (registration number 653331). Registered office: Talbot House, Talbot Street, Nottingham NG1 5HF ------_=_NextPart_000_01C05DF0.FD8CEF20 Content-Type: application/octet-stream; name="build.bat" Content-Disposition: attachment; filename="build.bat" @echo off set REALANTHOME=%ANT_HOME% set ANT_HOME=. set REALCLASSPATH=%CLASSPATH% set CLASSPATH=%ANT_XML_CLASSPATH%;%JAXP_HOME%\%JAXP_PARSER_JAR%;%CLASSPATH% if exist lib\ant.jar if exist bin\ant.bat if exist bin\lcp.bat if exist bin\antRun.bat goto runAnt call bootstrap.bat :runAnt if not "%REALANTHOME%" == "" goto install_ant call .\bin\ant.bat %1 %2 %3 %4 %5 %6 %7 %8 %9 goto cleanup :install_ant call .\bin\ant.bat -Dant.install="%REALANTHOME%" %1 %2 %3 %4 %5 %6 %7 %8 %9 rem clean up :cleanup set ANT_HOME=%REALANTHOME% set REALANTHOME= set CLASSPATH=%REALCLASSPATH% set REALCLASSPATH= ------_=_NextPart_000_01C05DF0.FD8CEF20--