You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by cf...@apache.org on 2012/06/07 16:35:12 UTC

svn commit: r1347644 - /incubator/flex/trunk/modules/downloads.xml

Author: cframpton
Date: Thu Jun  7 14:35:11 2012
New Revision: 1347644

URL: http://svn.apache.org/viewvc?rev=1347644&view=rev
Log:
Fix bug in batik-jars-check - was looking for the jars in the wrong place so wasn't installing them when it should have.

Modified:
    incubator/flex/trunk/modules/downloads.xml

Modified: incubator/flex/trunk/modules/downloads.xml
URL: http://svn.apache.org/viewvc/incubator/flex/trunk/modules/downloads.xml?rev=1347644&r1=1347643&r2=1347644&view=diff
==============================================================================
--- incubator/flex/trunk/modules/downloads.xml (original)
+++ incubator/flex/trunk/modules/downloads.xml Thu Jun  7 14:35:11 2012
@@ -414,8 +414,8 @@
     <target name="velocity-jars-check" description="Checks if velocity build lib exists.">
     	<condition property="velocity.jars.exists">
             <and>
-                <available file="${download.dir}/${velocity.zip.dir}/build/lib/commons-collections.jar"/>
-                <available file="${download.dir}/${velocity.zip.dir}/build/lib/oro.jar"/>
+                <available file="${basedir}/${velocity.dir}/build/lib/commons-collections.jar"/>
+                <available file="${basedir}/${velocity.dir}/build/lib/oro.jar"/>
             </and>
         </condition>
     </target>