Trigger a DBCP rebuild if src or bin is missing
authormarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Sat, 24 Apr 2010 23:23:23 +0000 (23:23 +0000)
committermarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Sat, 24 Apr 2010 23:23:23 +0000 (23:23 +0000)
Should fix buildbot

git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@937721 13f79535-47bb-0310-9956-ffa450edef68

build.xml

index f775b28..fd0949b 100644 (file)
--- a/build.xml
+++ b/build.xml
@@ -1867,7 +1867,10 @@ Apache Tomcat ${version} native binaries for Win64 AMD64/EMT64 platform.
     </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" />