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/06 17:28:36 UTC

svn commit: r1346944 - /incubator/flex/trunk/build.xml

Author: cframpton
Date: Wed Jun  6 15:28:35 2012
New Revision: 1346944

URL: http://svn.apache.org/viewvc?rev=1346944&view=rev
Log:
Should only be setting
        <property name="blazeds.donot.ask" value="set"/>
        <property name="font.donot.ask" value="set"/>
for release build, not for thirdparty-download target.

Modified:
    incubator/flex/trunk/build.xml

Modified: incubator/flex/trunk/build.xml
URL: http://svn.apache.org/viewvc/incubator/flex/trunk/build.xml?rev=1346944&r1=1346943&r2=1346944&view=diff
==============================================================================
--- incubator/flex/trunk/build.xml (original)
+++ incubator/flex/trunk/build.xml Wed Jun  6 15:28:35 2012
@@ -97,8 +97,6 @@
     -->
     <target name="thirdparty-downloads" description="Downloads all the required thirdparty code.">
         <ant dir="${basedir}/modules" target="thirdparty-downloads"/>
-        <property name="blazeds.donot.ask" value="set"/>
-        <property name="font.donot.ask" value="set"/>
         <ant dir="${basedir}/frameworks" target="thirdparty-downloads"/>
     </target>
 
@@ -181,8 +179,10 @@
         description="Set properties needed to turn on features for release sdk">
         <!-- generate localized compiler message jars -->
 	    <property name="localized.jars" value="true" />
-        <!-- don't ask to download blazeds -->	    
+        <!-- don't ask to download blazeds from Adobe Flex SDK -->	    
 	    <property name="blazeds.donot.ask" value="set" />
+        <!-- don't ask to download font jars from Adobe Flex SDK -->	    
+        <property name="font.donot.ask" value="set"/>
     </target>
     
     <!--