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 2017/12/30 23:20:46 UTC

git commit: [flex-sdk] [refs/heads/develop] - no support for automation flash flex kit on linux

Repository: flex-sdk
Updated Branches:
  refs/heads/develop bacc8cc5a -> 75ace9f5c


no support for automation flash flex kit on linux


Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/75ace9f5
Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/75ace9f5
Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/75ace9f5

Branch: refs/heads/develop
Commit: 75ace9f5c031a849b2df091ea093577378b88cbf
Parents: bacc8cc
Author: Justin Mclean <jm...@apache.org>
Authored: Sun Dec 31 10:20:34 2017 +1100
Committer: Justin Mclean <jm...@apache.org>
Committed: Sun Dec 31 10:20:34 2017 +1100

----------------------------------------------------------------------
 frameworks/build.xml | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/75ace9f5/frameworks/build.xml
----------------------------------------------------------------------
diff --git a/frameworks/build.xml b/frameworks/build.xml
index 5ac6438..165d630 100644
--- a/frameworks/build.xml
+++ b/frameworks/build.xml
@@ -258,17 +258,22 @@
     <!--
         automation: tool was formerly qtp and tool_air was formerly qtp_air
     -->
-    <target name="compile-automation" description="Builds all automation SWCs but not their resource bundles">
+    <target name="compile-automation" description="Builds all automation SWCs but not their resource bundles" depends="compile-automation-others, compile-automation-flashflexkit" />
+
+    <target name="compile-automation-others" unless="isLinux">
         <antcall target="automation_agent"/>
         <antcall target="automation_dmv"/>
         <antcall target="tool"/>
         <antcall target="automation"/>
         <antcall target="tool_air"/>
         <antcall target="automation_spark"/>
-        <antcall target="automation_flashflexkit"/>
         <antcall target="automation_air"/>
         <antcall target="automation_airspark"/>
     </target>
+
+    <target name="compile-automation-flashflexkit" unless="isLinux">
+        <antcall target="automation_flashflexkit"/>
+    </target>
     
     <target name="other.locales" depends="flash-integration.other.locales" description ="Builds resource SWCs for all locales">
         <ant dir="${basedir}/projects/framework" target="other.locales"/>