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 2013/01/30 18:50:56 UTC

svn commit: r1440557 - /flex/sdk/branches/develop/ide/flashbuilder/build.xml

Author: cframpton
Date: Wed Jan 30 17:50:56 2013
New Revision: 1440557

URL: http://svn.apache.org/viewvc?rev=1440557&view=rev
Log:
Fix depends for make-sdk so it builds rsls if they don't exist.

Modified:
    flex/sdk/branches/develop/ide/flashbuilder/build.xml

Modified: flex/sdk/branches/develop/ide/flashbuilder/build.xml
URL: http://svn.apache.org/viewvc/flex/sdk/branches/develop/ide/flashbuilder/build.xml?rev=1440557&r1=1440556&r2=1440557&view=diff
==============================================================================
--- flex/sdk/branches/develop/ide/flashbuilder/build.xml (original)
+++ flex/sdk/branches/develop/ide/flashbuilder/build.xml Wed Jan 30 17:50:56 2013
@@ -51,7 +51,7 @@
          
          There is no clean for this operation.
     -->
-    <target name="make-sdk" depends="check-rsls,install-config,install-playerglobal,install-air"
+    <target name="make-sdk" depends="build-rsls,install-config,install-playerglobal,install-air"
         description="Converts this SDK into the layout FlashBuilder expects."/>
     
     <target name="create-config-files" 
@@ -107,8 +107,6 @@
 
     <target name="check-rsls">
         <available file="${frameworks.dir}/rsls" type="dir" property="rsls.dir.exists"/>
-        <!--fail message="The ${frameworks.dir}/rsls directory must be created. Use the frameworks-rsls ant target in ${FLEX_HOME}." 
-            unless="rsls.dir.exists"/-->
     </target>
     
     <target name="build-rsls" depends="check-rsls" unless="rsls.dir.exists">