Author: markt
Date: Sat Apr 24 23:23:23 2010
New Revision: 937721
URL: http://svn.apache.org/viewvc?rev=937721&view=rev
Log:
Trigger a DBCP rebuild if src or bin is missing
Should fix buildbot
Modified:
tomcat/trunk/build.xml
Modified: tomcat/trunk/build.xml
URL:
http://svn.apache.org/viewvc/tomcat/trunk/build.xml?rev=937721&r1=937720&r2=937721&view=diff
==============================================================================
--- tomcat/trunk/build.xml (original)
+++ tomcat/trunk/build.xml Sat Apr 24 23:23:23 2010
@@ -1867,7 +1867,10 @@ Apache Tomcat ${version} native binaries
</antcall>
<mkdir dir="${tomcat-dbcp.home}"/>
<condition property="no.build.dbcp">
- <available file="${tomcat-dbcp.jar}"/>
+ <and>
+ <available file="${tomcat-dbcp.jar}"/>
+ <available file="${tomcat-dbcp-src.jar}"/>
+ </and>
</condition>
<antcall target="build-tomcat-dbcp" />
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]