You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@manifoldcf.apache.org by kw...@apache.org on 2014/03/26 14:51:13 UTC

svn commit: r1581838 - in /manifoldcf/branches/CONNECTORS-912/connectors: activedirectory/ alfresco/ cmis/ documentum/ dropbox/ elasticsearch/ email/ filenet/ generic/ googledrive/ gts/ hdfs/ jcifs/ jdbc/ jira/ ldap/ livelink/ memex/ meridio/ nullautho...

Author: kwright
Date: Wed Mar 26 13:51:13 2014
New Revision: 1581838

URL: http://svn.apache.org/r1581838
Log:
Use absolute rather than relative paths for mcf-dist, so that tests can locate the appropriate war files

Modified:
    manifoldcf/branches/CONNECTORS-912/connectors/activedirectory/build.xml
    manifoldcf/branches/CONNECTORS-912/connectors/alfresco/build.xml
    manifoldcf/branches/CONNECTORS-912/connectors/cmis/build.xml
    manifoldcf/branches/CONNECTORS-912/connectors/documentum/build.xml
    manifoldcf/branches/CONNECTORS-912/connectors/dropbox/build.xml
    manifoldcf/branches/CONNECTORS-912/connectors/elasticsearch/build.xml
    manifoldcf/branches/CONNECTORS-912/connectors/email/build.xml
    manifoldcf/branches/CONNECTORS-912/connectors/filenet/build.xml
    manifoldcf/branches/CONNECTORS-912/connectors/generic/build.xml
    manifoldcf/branches/CONNECTORS-912/connectors/googledrive/build.xml
    manifoldcf/branches/CONNECTORS-912/connectors/gts/build.xml
    manifoldcf/branches/CONNECTORS-912/connectors/hdfs/build.xml
    manifoldcf/branches/CONNECTORS-912/connectors/jcifs/build.xml
    manifoldcf/branches/CONNECTORS-912/connectors/jdbc/build.xml
    manifoldcf/branches/CONNECTORS-912/connectors/jira/build.xml
    manifoldcf/branches/CONNECTORS-912/connectors/ldap/build.xml
    manifoldcf/branches/CONNECTORS-912/connectors/livelink/build.xml
    manifoldcf/branches/CONNECTORS-912/connectors/memex/build.xml
    manifoldcf/branches/CONNECTORS-912/connectors/meridio/build.xml
    manifoldcf/branches/CONNECTORS-912/connectors/nullauthority/build.xml
    manifoldcf/branches/CONNECTORS-912/connectors/nulloutput/build.xml
    manifoldcf/branches/CONNECTORS-912/connectors/opensearchserver/build.xml
    manifoldcf/branches/CONNECTORS-912/connectors/regexpmapper/build.xml
    manifoldcf/branches/CONNECTORS-912/connectors/rss/build.xml
    manifoldcf/branches/CONNECTORS-912/connectors/sharepoint/build.xml
    manifoldcf/branches/CONNECTORS-912/connectors/solr/build.xml
    manifoldcf/branches/CONNECTORS-912/connectors/webcrawler/build.xml
    manifoldcf/branches/CONNECTORS-912/connectors/wiki/build.xml

Modified: manifoldcf/branches/CONNECTORS-912/connectors/activedirectory/build.xml
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-912/connectors/activedirectory/build.xml?rev=1581838&r1=1581837&r2=1581838&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-912/connectors/activedirectory/build.xml (original)
+++ manifoldcf/branches/CONNECTORS-912/connectors/activedirectory/build.xml Wed Mar 26 13:51:13 2014
@@ -21,7 +21,8 @@
     <condition property="mcf-dist" value="${env.MCFDISTPATH}">
         <isset property="env.MCFDISTPATH"/>
     </condition>
-    <condition property="mcf-dist" value="../../dist">
+    <property name="abs-dist" location="../../dist"/>
+    <condition property="mcf-dist" value="${abs-dist}">
         <not>
             <isset property="env.MCFDISTPATH"/>
         </not>

Modified: manifoldcf/branches/CONNECTORS-912/connectors/alfresco/build.xml
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-912/connectors/alfresco/build.xml?rev=1581838&r1=1581837&r2=1581838&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-912/connectors/alfresco/build.xml (original)
+++ manifoldcf/branches/CONNECTORS-912/connectors/alfresco/build.xml Wed Mar 26 13:51:13 2014
@@ -21,7 +21,8 @@
     <condition property="mcf-dist" value="${env.MCFDISTPATH}">
         <isset property="env.MCFDISTPATH"/>
     </condition>
-    <condition property="mcf-dist" value="../../dist">
+    <property name="abs-dist" location="../../dist"/>
+    <condition property="mcf-dist" value="${abs-dist}">
         <not>
             <isset property="env.MCFDISTPATH"/>
         </not>

Modified: manifoldcf/branches/CONNECTORS-912/connectors/cmis/build.xml
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-912/connectors/cmis/build.xml?rev=1581838&r1=1581837&r2=1581838&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-912/connectors/cmis/build.xml (original)
+++ manifoldcf/branches/CONNECTORS-912/connectors/cmis/build.xml Wed Mar 26 13:51:13 2014
@@ -21,7 +21,8 @@
     <condition property="mcf-dist" value="${env.MCFDISTPATH}">
         <isset property="env.MCFDISTPATH"/>
     </condition>
-    <condition property="mcf-dist" value="../../dist">
+    <property name="abs-dist" location="../../dist"/>
+    <condition property="mcf-dist" value="${abs-dist}">
         <not>
             <isset property="env.MCFDISTPATH"/>
         </not>

Modified: manifoldcf/branches/CONNECTORS-912/connectors/documentum/build.xml
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-912/connectors/documentum/build.xml?rev=1581838&r1=1581837&r2=1581838&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-912/connectors/documentum/build.xml (original)
+++ manifoldcf/branches/CONNECTORS-912/connectors/documentum/build.xml Wed Mar 26 13:51:13 2014
@@ -21,7 +21,8 @@
     <condition property="mcf-dist" value="${env.MCFDISTPATH}">
         <isset property="env.MCFDISTPATH"/>
     </condition>
-    <condition property="mcf-dist" value="../../dist">
+    <property name="abs-dist" location="../../dist"/>
+    <condition property="mcf-dist" value="${abs-dist}">
         <not>
             <isset property="env.MCFDISTPATH"/>
         </not>

Modified: manifoldcf/branches/CONNECTORS-912/connectors/dropbox/build.xml
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-912/connectors/dropbox/build.xml?rev=1581838&r1=1581837&r2=1581838&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-912/connectors/dropbox/build.xml (original)
+++ manifoldcf/branches/CONNECTORS-912/connectors/dropbox/build.xml Wed Mar 26 13:51:13 2014
@@ -21,7 +21,8 @@
     <condition property="mcf-dist" value="${env.MCFDISTPATH}">
         <isset property="env.MCFDISTPATH"/>
     </condition>
-    <condition property="mcf-dist" value="../../dist">
+    <property name="abs-dist" location="../../dist"/>
+    <condition property="mcf-dist" value="${abs-dist}">
         <not>
             <isset property="env.MCFDISTPATH"/>
         </not>

Modified: manifoldcf/branches/CONNECTORS-912/connectors/elasticsearch/build.xml
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-912/connectors/elasticsearch/build.xml?rev=1581838&r1=1581837&r2=1581838&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-912/connectors/elasticsearch/build.xml (original)
+++ manifoldcf/branches/CONNECTORS-912/connectors/elasticsearch/build.xml Wed Mar 26 13:51:13 2014
@@ -21,7 +21,8 @@
     <condition property="mcf-dist" value="${env.MCFDISTPATH}">
         <isset property="env.MCFDISTPATH"/>
     </condition>
-    <condition property="mcf-dist" value="../../dist">
+    <property name="abs-dist" location="../../dist"/>
+    <condition property="mcf-dist" value="${abs-dist}">
         <not>
             <isset property="env.MCFDISTPATH"/>
         </not>

Modified: manifoldcf/branches/CONNECTORS-912/connectors/email/build.xml
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-912/connectors/email/build.xml?rev=1581838&r1=1581837&r2=1581838&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-912/connectors/email/build.xml (original)
+++ manifoldcf/branches/CONNECTORS-912/connectors/email/build.xml Wed Mar 26 13:51:13 2014
@@ -21,7 +21,8 @@ limitations under the License.
     <condition property="mcf-dist" value="${env.MCFDISTPATH}">
         <isset property="env.MCFDISTPATH"/>
     </condition>
-    <condition property="mcf-dist" value="../../dist">
+    <property name="abs-dist" location="../../dist"/>
+    <condition property="mcf-dist" value="${abs-dist}">
         <not>
             <isset property="env.MCFDISTPATH"/>
         </not>

Modified: manifoldcf/branches/CONNECTORS-912/connectors/filenet/build.xml
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-912/connectors/filenet/build.xml?rev=1581838&r1=1581837&r2=1581838&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-912/connectors/filenet/build.xml (original)
+++ manifoldcf/branches/CONNECTORS-912/connectors/filenet/build.xml Wed Mar 26 13:51:13 2014
@@ -21,7 +21,8 @@
     <condition property="mcf-dist" value="${env.MCFDISTPATH}">
         <isset property="env.MCFDISTPATH"/>
     </condition>
-    <condition property="mcf-dist" value="../../dist">
+    <property name="abs-dist" location="../../dist"/>
+    <condition property="mcf-dist" value="${abs-dist}">
         <not>
             <isset property="env.MCFDISTPATH"/>
         </not>

Modified: manifoldcf/branches/CONNECTORS-912/connectors/generic/build.xml
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-912/connectors/generic/build.xml?rev=1581838&r1=1581837&r2=1581838&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-912/connectors/generic/build.xml (original)
+++ manifoldcf/branches/CONNECTORS-912/connectors/generic/build.xml Wed Mar 26 13:51:13 2014
@@ -21,7 +21,8 @@
     <condition property="mcf-dist" value="${env.MCFDISTPATH}">
         <isset property="env.MCFDISTPATH"/>
     </condition>
-    <condition property="mcf-dist" value="../../dist">
+    <property name="abs-dist" location="../../dist"/>
+    <condition property="mcf-dist" value="${abs-dist}">
         <not>
             <isset property="env.MCFDISTPATH"/>
         </not>

Modified: manifoldcf/branches/CONNECTORS-912/connectors/googledrive/build.xml
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-912/connectors/googledrive/build.xml?rev=1581838&r1=1581837&r2=1581838&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-912/connectors/googledrive/build.xml (original)
+++ manifoldcf/branches/CONNECTORS-912/connectors/googledrive/build.xml Wed Mar 26 13:51:13 2014
@@ -21,7 +21,8 @@
     <condition property="mcf-dist" value="${env.MCFDISTPATH}">
         <isset property="env.MCFDISTPATH"/>
     </condition>
-    <condition property="mcf-dist" value="../../dist">
+    <property name="abs-dist" location="../../dist"/>
+    <condition property="mcf-dist" value="${abs-dist}">
         <not>
             <isset property="env.MCFDISTPATH"/>
         </not>

Modified: manifoldcf/branches/CONNECTORS-912/connectors/gts/build.xml
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-912/connectors/gts/build.xml?rev=1581838&r1=1581837&r2=1581838&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-912/connectors/gts/build.xml (original)
+++ manifoldcf/branches/CONNECTORS-912/connectors/gts/build.xml Wed Mar 26 13:51:13 2014
@@ -21,7 +21,8 @@
     <condition property="mcf-dist" value="${env.MCFDISTPATH}">
         <isset property="env.MCFDISTPATH"/>
     </condition>
-    <condition property="mcf-dist" value="../../dist">
+    <property name="abs-dist" location="../../dist"/>
+    <condition property="mcf-dist" value="${abs-dist}">
         <not>
             <isset property="env.MCFDISTPATH"/>
         </not>

Modified: manifoldcf/branches/CONNECTORS-912/connectors/hdfs/build.xml
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-912/connectors/hdfs/build.xml?rev=1581838&r1=1581837&r2=1581838&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-912/connectors/hdfs/build.xml (original)
+++ manifoldcf/branches/CONNECTORS-912/connectors/hdfs/build.xml Wed Mar 26 13:51:13 2014
@@ -21,7 +21,8 @@
     <condition property="mcf-dist" value="${env.MCFDISTPATH}">
         <isset property="env.MCFDISTPATH"/>
     </condition>
-    <condition property="mcf-dist" value="../../dist">
+    <property name="abs-dist" location="../../dist"/>
+    <condition property="mcf-dist" value="${abs-dist}">
         <not>
             <isset property="env.MCFDISTPATH"/>
         </not>

Modified: manifoldcf/branches/CONNECTORS-912/connectors/jcifs/build.xml
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-912/connectors/jcifs/build.xml?rev=1581838&r1=1581837&r2=1581838&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-912/connectors/jcifs/build.xml (original)
+++ manifoldcf/branches/CONNECTORS-912/connectors/jcifs/build.xml Wed Mar 26 13:51:13 2014
@@ -21,7 +21,8 @@
     <condition property="mcf-dist" value="${env.MCFDISTPATH}">
         <isset property="env.MCFDISTPATH"/>
     </condition>
-    <condition property="mcf-dist" value="../../dist">
+    <property name="abs-dist" location="../../dist"/>
+    <condition property="mcf-dist" value="${abs-dist}">
         <not>
             <isset property="env.MCFDISTPATH"/>
         </not>

Modified: manifoldcf/branches/CONNECTORS-912/connectors/jdbc/build.xml
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-912/connectors/jdbc/build.xml?rev=1581838&r1=1581837&r2=1581838&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-912/connectors/jdbc/build.xml (original)
+++ manifoldcf/branches/CONNECTORS-912/connectors/jdbc/build.xml Wed Mar 26 13:51:13 2014
@@ -21,7 +21,8 @@
     <condition property="mcf-dist" value="${env.MCFDISTPATH}">
         <isset property="env.MCFDISTPATH"/>
     </condition>
-    <condition property="mcf-dist" value="../../dist">
+    <property name="abs-dist" location="../../dist"/>
+    <condition property="mcf-dist" value="${abs-dist}">
         <not>
             <isset property="env.MCFDISTPATH"/>
         </not>

Modified: manifoldcf/branches/CONNECTORS-912/connectors/jira/build.xml
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-912/connectors/jira/build.xml?rev=1581838&r1=1581837&r2=1581838&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-912/connectors/jira/build.xml (original)
+++ manifoldcf/branches/CONNECTORS-912/connectors/jira/build.xml Wed Mar 26 13:51:13 2014
@@ -21,7 +21,8 @@
     <condition property="mcf-dist" value="${env.MCFDISTPATH}">
         <isset property="env.MCFDISTPATH"/>
     </condition>
-    <condition property="mcf-dist" value="../../dist">
+    <property name="abs-dist" location="../../dist"/>
+    <condition property="mcf-dist" value="${abs-dist}">
         <not>
             <isset property="env.MCFDISTPATH"/>
         </not>

Modified: manifoldcf/branches/CONNECTORS-912/connectors/ldap/build.xml
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-912/connectors/ldap/build.xml?rev=1581838&r1=1581837&r2=1581838&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-912/connectors/ldap/build.xml (original)
+++ manifoldcf/branches/CONNECTORS-912/connectors/ldap/build.xml Wed Mar 26 13:51:13 2014
@@ -21,7 +21,8 @@
     <condition property="mcf-dist" value="${env.MCFDISTPATH}">
         <isset property="env.MCFDISTPATH"/>
     </condition>
-    <condition property="mcf-dist" value="../../dist">
+    <property name="abs-dist" location="../../dist"/>
+    <condition property="mcf-dist" value="${abs-dist}">
         <not>
             <isset property="env.MCFDISTPATH"/>
         </not>

Modified: manifoldcf/branches/CONNECTORS-912/connectors/livelink/build.xml
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-912/connectors/livelink/build.xml?rev=1581838&r1=1581837&r2=1581838&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-912/connectors/livelink/build.xml (original)
+++ manifoldcf/branches/CONNECTORS-912/connectors/livelink/build.xml Wed Mar 26 13:51:13 2014
@@ -21,7 +21,8 @@
     <condition property="mcf-dist" value="${env.MCFDISTPATH}">
         <isset property="env.MCFDISTPATH"/>
     </condition>
-    <condition property="mcf-dist" value="../../dist">
+    <property name="abs-dist" location="../../dist"/>
+    <condition property="mcf-dist" value="${abs-dist}">
         <not>
             <isset property="env.MCFDISTPATH"/>
         </not>

Modified: manifoldcf/branches/CONNECTORS-912/connectors/memex/build.xml
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-912/connectors/memex/build.xml?rev=1581838&r1=1581837&r2=1581838&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-912/connectors/memex/build.xml (original)
+++ manifoldcf/branches/CONNECTORS-912/connectors/memex/build.xml Wed Mar 26 13:51:13 2014
@@ -21,7 +21,8 @@
     <condition property="mcf-dist" value="${env.MCFDISTPATH}">
         <isset property="env.MCFDISTPATH"/>
     </condition>
-    <condition property="mcf-dist" value="../../dist">
+    <property name="abs-dist" location="../../dist"/>
+    <condition property="mcf-dist" value="${abs-dist}">
         <not>
             <isset property="env.MCFDISTPATH"/>
         </not>

Modified: manifoldcf/branches/CONNECTORS-912/connectors/meridio/build.xml
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-912/connectors/meridio/build.xml?rev=1581838&r1=1581837&r2=1581838&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-912/connectors/meridio/build.xml (original)
+++ manifoldcf/branches/CONNECTORS-912/connectors/meridio/build.xml Wed Mar 26 13:51:13 2014
@@ -21,7 +21,8 @@
     <condition property="mcf-dist" value="${env.MCFDISTPATH}">
         <isset property="env.MCFDISTPATH"/>
     </condition>
-    <condition property="mcf-dist" value="../../dist">
+    <property name="abs-dist" location="../../dist"/>
+    <condition property="mcf-dist" value="${abs-dist}">
         <not>
             <isset property="env.MCFDISTPATH"/>
         </not>

Modified: manifoldcf/branches/CONNECTORS-912/connectors/nullauthority/build.xml
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-912/connectors/nullauthority/build.xml?rev=1581838&r1=1581837&r2=1581838&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-912/connectors/nullauthority/build.xml (original)
+++ manifoldcf/branches/CONNECTORS-912/connectors/nullauthority/build.xml Wed Mar 26 13:51:13 2014
@@ -21,7 +21,8 @@
     <condition property="mcf-dist" value="${env.MCFDISTPATH}">
         <isset property="env.MCFDISTPATH"/>
     </condition>
-    <condition property="mcf-dist" value="../../dist">
+    <property name="abs-dist" location="../../dist"/>
+    <condition property="mcf-dist" value="${abs-dist}">
         <not>
             <isset property="env.MCFDISTPATH"/>
         </not>

Modified: manifoldcf/branches/CONNECTORS-912/connectors/nulloutput/build.xml
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-912/connectors/nulloutput/build.xml?rev=1581838&r1=1581837&r2=1581838&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-912/connectors/nulloutput/build.xml (original)
+++ manifoldcf/branches/CONNECTORS-912/connectors/nulloutput/build.xml Wed Mar 26 13:51:13 2014
@@ -21,7 +21,8 @@
     <condition property="mcf-dist" value="${env.MCFDISTPATH}">
         <isset property="env.MCFDISTPATH"/>
     </condition>
-    <condition property="mcf-dist" value="../../dist">
+    <property name="abs-dist" location="../../dist"/>
+    <condition property="mcf-dist" value="${abs-dist}">
         <not>
             <isset property="env.MCFDISTPATH"/>
         </not>

Modified: manifoldcf/branches/CONNECTORS-912/connectors/opensearchserver/build.xml
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-912/connectors/opensearchserver/build.xml?rev=1581838&r1=1581837&r2=1581838&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-912/connectors/opensearchserver/build.xml (original)
+++ manifoldcf/branches/CONNECTORS-912/connectors/opensearchserver/build.xml Wed Mar 26 13:51:13 2014
@@ -21,7 +21,8 @@
     <condition property="mcf-dist" value="${env.MCFDISTPATH}">
         <isset property="env.MCFDISTPATH"/>
     </condition>
-    <condition property="mcf-dist" value="../../dist">
+    <property name="abs-dist" location="../../dist"/>
+    <condition property="mcf-dist" value="${abs-dist}">
         <not>
             <isset property="env.MCFDISTPATH"/>
         </not>

Modified: manifoldcf/branches/CONNECTORS-912/connectors/regexpmapper/build.xml
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-912/connectors/regexpmapper/build.xml?rev=1581838&r1=1581837&r2=1581838&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-912/connectors/regexpmapper/build.xml (original)
+++ manifoldcf/branches/CONNECTORS-912/connectors/regexpmapper/build.xml Wed Mar 26 13:51:13 2014
@@ -21,7 +21,8 @@
     <condition property="mcf-dist" value="${env.MCFDISTPATH}">
         <isset property="env.MCFDISTPATH"/>
     </condition>
-    <condition property="mcf-dist" value="../../dist">
+    <property name="abs-dist" location="../../dist"/>
+    <condition property="mcf-dist" value="${abs-dist}">
         <not>
             <isset property="env.MCFDISTPATH"/>
         </not>

Modified: manifoldcf/branches/CONNECTORS-912/connectors/rss/build.xml
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-912/connectors/rss/build.xml?rev=1581838&r1=1581837&r2=1581838&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-912/connectors/rss/build.xml (original)
+++ manifoldcf/branches/CONNECTORS-912/connectors/rss/build.xml Wed Mar 26 13:51:13 2014
@@ -21,7 +21,8 @@
     <condition property="mcf-dist" value="${env.MCFDISTPATH}">
         <isset property="env.MCFDISTPATH"/>
     </condition>
-    <condition property="mcf-dist" value="../../dist">
+    <property name="abs-dist" location="../../dist"/>
+    <condition property="mcf-dist" value="${abs-dist}">
         <not>
             <isset property="env.MCFDISTPATH"/>
         </not>

Modified: manifoldcf/branches/CONNECTORS-912/connectors/sharepoint/build.xml
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-912/connectors/sharepoint/build.xml?rev=1581838&r1=1581837&r2=1581838&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-912/connectors/sharepoint/build.xml (original)
+++ manifoldcf/branches/CONNECTORS-912/connectors/sharepoint/build.xml Wed Mar 26 13:51:13 2014
@@ -21,7 +21,8 @@
     <condition property="mcf-dist" value="${env.MCFDISTPATH}">
         <isset property="env.MCFDISTPATH"/>
     </condition>
-    <condition property="mcf-dist" value="../../dist">
+    <property name="abs-dist" location="../../dist"/>
+    <condition property="mcf-dist" value="${abs-dist}">
         <not>
             <isset property="env.MCFDISTPATH"/>
         </not>

Modified: manifoldcf/branches/CONNECTORS-912/connectors/solr/build.xml
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-912/connectors/solr/build.xml?rev=1581838&r1=1581837&r2=1581838&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-912/connectors/solr/build.xml (original)
+++ manifoldcf/branches/CONNECTORS-912/connectors/solr/build.xml Wed Mar 26 13:51:13 2014
@@ -21,7 +21,8 @@
     <condition property="mcf-dist" value="${env.MCFDISTPATH}">
         <isset property="env.MCFDISTPATH"/>
     </condition>
-    <condition property="mcf-dist" value="../../dist">
+    <property name="abs-dist" location="../../dist"/>
+    <condition property="mcf-dist" value="${abs-dist}">
         <not>
             <isset property="env.MCFDISTPATH"/>
         </not>

Modified: manifoldcf/branches/CONNECTORS-912/connectors/webcrawler/build.xml
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-912/connectors/webcrawler/build.xml?rev=1581838&r1=1581837&r2=1581838&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-912/connectors/webcrawler/build.xml (original)
+++ manifoldcf/branches/CONNECTORS-912/connectors/webcrawler/build.xml Wed Mar 26 13:51:13 2014
@@ -21,7 +21,8 @@
     <condition property="mcf-dist" value="${env.MCFDISTPATH}">
         <isset property="env.MCFDISTPATH"/>
     </condition>
-    <condition property="mcf-dist" value="../../dist">
+    <property name="abs-dist" location="../../dist"/>
+    <condition property="mcf-dist" value="${abs-dist}">
         <not>
             <isset property="env.MCFDISTPATH"/>
         </not>

Modified: manifoldcf/branches/CONNECTORS-912/connectors/wiki/build.xml
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-912/connectors/wiki/build.xml?rev=1581838&r1=1581837&r2=1581838&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-912/connectors/wiki/build.xml (original)
+++ manifoldcf/branches/CONNECTORS-912/connectors/wiki/build.xml Wed Mar 26 13:51:13 2014
@@ -21,7 +21,8 @@
     <condition property="mcf-dist" value="${env.MCFDISTPATH}">
         <isset property="env.MCFDISTPATH"/>
     </condition>
-    <condition property="mcf-dist" value="../../dist">
+    <property name="abs-dist" location="../../dist"/>
+    <condition property="mcf-dist" value="${abs-dist}">
         <not>
             <isset property="env.MCFDISTPATH"/>
         </not>