Author: kwright
Date: Mon Oct 29 12:04:55 2012
New Revision: 1403260

URL: http://svn.apache.org/viewvc?rev=1403260&view=rev
Log:
Check for future svn versions also

Modified:
    manifoldcf/trunk/common-build.xml

Modified: manifoldcf/trunk/common-build.xml
URL: 
http://svn.apache.org/viewvc/manifoldcf/trunk/common-build.xml?rev=1403260&r1=1403259&r2=1403260&view=diff
==============================================================================
--- manifoldcf/trunk/common-build.xml (original)
+++ manifoldcf/trunk/common-build.xml Mon Oct 29 12:04:55 2012
@@ -41,7 +41,13 @@
         </exec>
         <loadfile property="svn-output" srcFile="build/svn-check/svn.output"/>
         <condition property="svn-version-ok">
-            <contains string="${svn-output}" substring="1.7."/>
+            <or>
+                <contains string="${svn-output}" substring="1.7."/>
+                <contains string="${svn-output}" substring="1.8."/>
+                <contains string="${svn-output}" substring="1.9."/>
+                <contains string="${svn-output}" substring="1.10."/>
+                <contains string="${svn-output}" substring="1.11."/>
+            </or>
         </condition>
     </target>
 


Reply via email to