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/28 07:03:56 UTC

svn commit: r1582618 - /manifoldcf/branches/CONNECTORS-912/build.xml

Author: kwright
Date: Fri Mar 28 06:03:55 2014
New Revision: 1582618

URL: http://svn.apache.org/r1582618
Log:
Fix clean target etc to make sure dist is in place first

Modified:
    manifoldcf/branches/CONNECTORS-912/build.xml

Modified: manifoldcf/branches/CONNECTORS-912/build.xml
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-912/build.xml?rev=1582618&r1=1582617&r2=1582618&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-912/build.xml (original)
+++ manifoldcf/branches/CONNECTORS-912/build.xml Fri Mar 28 06:03:55 2014
@@ -1188,11 +1188,11 @@
 
     <!-- Generic connector targets -->
     
-    <target name="download-connectors-dependencies">
+    <target name="download-connectors-dependencies" depends="deliver-framework" if="downloaded">
         <connectors-crawl target="download-dependencies"/>
     </target>
 
-    <target name="cleanup-connectors-dependencies">
+    <target name="cleanup-connectors-dependencies" depends="deliver-framework" if="downloaded">
         <connectors-crawl target="download-cleanup"/>
     </target>
 
@@ -1294,7 +1294,7 @@
 
     <!-- General connectors utility targets -->
     
-    <target name="clean-connectors">
+    <target name="clean-connectors" depends="deliver-framework" if="downloaded">
         <connectors-crawl target="clean"/>
     </target>