You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by ah...@apache.org on 2014/12/18 01:26:59 UTC

git commit: [flex-sdk] [refs/heads/release4.14.0] - allow flex-messaging-common to build without building flex-blazeds first

Repository: flex-sdk
Updated Branches:
  refs/heads/release4.14.0 c0fe671ba -> 646048e07


allow flex-messaging-common to build without building flex-blazeds first


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

Branch: refs/heads/release4.14.0
Commit: 646048e07123f63eebc93b66a75959f981a52b4f
Parents: c0fe671
Author: Alex Harui <ah...@apache.org>
Authored: Wed Dec 17 16:26:38 2014 -0800
Committer: Alex Harui <ah...@apache.org>
Committed: Wed Dec 17 16:26:38 2014 -0800

----------------------------------------------------------------------
 modules/flex-messaging-common/build.xml | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/646048e0/modules/flex-messaging-common/build.xml
----------------------------------------------------------------------
diff --git a/modules/flex-messaging-common/build.xml b/modules/flex-messaging-common/build.xml
index 630ed83..f997666 100644
--- a/modules/flex-messaging-common/build.xml
+++ b/modules/flex-messaging-common/build.xml
@@ -83,8 +83,9 @@
      </target>
 
     <target name="compile.external" description="Compile flex-messaging-common.jar in flex-blazeds repo" unless="src.folder.exists">
-        <ant dir="${BLAZEDS_HOME}" target="common"/>
-        <copy file="${BLAZEDS_HOME}/lib/flex-messaging-common.jar" toDir="${FLEX_HOME}/lib" />
+        <ant dir="${BLAZEDS_HOME}" target="common">
+            <property name="lib.dir" value="${FLEX_HOME}/lib" />
+        </ant>
     </target>
     
     <target name="clean-external" description="clean in flex-blazeds repo" unless="src.folder.exists">