List:Commits« Previous MessageNext Message »
From:mmatthews Date:September 4 2007 11:19pm
Subject:Connector/J commit: r6555 - branches/branch_5_0/connector-j
View as plain text  
Modified:
   branches/branch_5_0/connector-j/build.xml
Log:
Allow source builds to work, even if not checked out from SVN.

Modified: branches/branch_5_0/connector-j/build.xml
===================================================================
--- branches/branch_5_0/connector-j/build.xml	2007-09-04 21:17:57 UTC (rev 6554)
+++ branches/branch_5_0/connector-j/build.xml	2007-09-04 21:19:51 UTC (rev 6555)
@@ -111,7 +111,10 @@
 
 		<mkdir dir="${buildDir}" />
 		
-		<exec executable="svn" output="${buildDir}/svn.properties">
+		<exec executable="svn" 
+			output="${buildDir}/svn.properties" 
+			failifexecutionfails="false"
+			failonerror="false">
 			  <arg value="info" />
 		</exec>
 		    

Thread
Connector/J commit: r6555 - branches/branch_5_0/connector-jmmatthews4 Sep