You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by jm...@apache.org on 2013/01/25 01:17:02 UTC

svn commit: r1438276 - /flex/sdk/branches/develop/frameworks/build.xml

Author: jmclean
Date: Fri Jan 25 00:17:02 2013
New Revision: 1438276

URL: http://svn.apache.org/viewvc?rev=1438276&view=rev
Log:
added no.thirdparty-clean and no.thirdparty-downloads options

Modified:
    flex/sdk/branches/develop/frameworks/build.xml

Modified: flex/sdk/branches/develop/frameworks/build.xml
URL: http://svn.apache.org/viewvc/flex/sdk/branches/develop/frameworks/build.xml?rev=1438276&r1=1438275&r2=1438276&view=diff
==============================================================================
--- flex/sdk/branches/develop/frameworks/build.xml (original)
+++ flex/sdk/branches/develop/frameworks/build.xml Fri Jan 25 00:17:02 2013
@@ -73,7 +73,7 @@
         <touch file="winFonts.ser"/>
     </target>
         
-    <target name="thirdparty-downloads" unless="no.thirdparty-clean" description="Downloads all the required thirdparty code.">
+    <target name="thirdparty-downloads" unless="no.thirdparty-downloads" description="Downloads all the required thirdparty code.">
         <ant antfile="${basedir}/downloads.xml" dir="${basedir}"/>
     </target>
 
@@ -216,7 +216,7 @@
 
     <target name="super-clean" depends="thirdparty-clean,clean" description="Cleans everything including thirdparty downloads."/>
 	
-    <target name="thirdparty-clean" description="Removes all thirdparty downloads.">
+    <target name="thirdparty-clean" unless="no.thirdparty-clean" description="Removes all thirdparty downloads.">
         <ant antfile="${basedir}/downloads.xml" target="clean" dir="${basedir}"/>
     </target>