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/10/02 17:40:01 UTC

svn commit: r1629003 - /manifoldcf/branches/CONNECTORS-1037/connectors/alfresco-webscript/build.xml

Author: kwright
Date: Thu Oct  2 15:40:00 2014
New Revision: 1629003

URL: http://svn.apache.org/r1629003
Log:
Point at the right connector-build.xml

Modified:
    manifoldcf/branches/CONNECTORS-1037/connectors/alfresco-webscript/build.xml

Modified: manifoldcf/branches/CONNECTORS-1037/connectors/alfresco-webscript/build.xml
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1037/connectors/alfresco-webscript/build.xml?rev=1629003&r1=1629002&r2=1629003&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-1037/connectors/alfresco-webscript/build.xml (original)
+++ manifoldcf/branches/CONNECTORS-1037/connectors/alfresco-webscript/build.xml Thu Oct  2 15:40:00 2014
@@ -17,7 +17,18 @@
 
 <project name="alfresco-webscript" default="all">
 
-    <import file="../connector-build.xml"/>
+    <property environment="env"/>
+    <condition property="mcf-dist" value="${env.MCFDISTPATH}">
+        <isset property="env.MCFDISTPATH"/>
+    </condition>
+    <property name="abs-dist" location="../../dist"/>
+    <condition property="mcf-dist" value="${abs-dist}">
+        <not>
+            <isset property="env.MCFDISTPATH"/>
+        </not>
+    </condition>
+
+    <import file="${mcf-dist}/connector-build.xml"/>
 
     <target name="calculate-testcode-condition">
         <available file="test-materials-proprietary/alfresco.war" property="alfrescoTestcodeStatus"/>