You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by pi...@apache.org on 2017/10/24 14:33:31 UTC

git commit: [flex-utilities] [refs/heads/develop] - Bring back previous path to flexTasks.jar

Repository: flex-utilities
Updated Branches:
  refs/heads/develop 697ea8e1c -> 1f247c238


Bring back previous path to flexTasks.jar


Project: http://git-wip-us.apache.org/repos/asf/flex-utilities/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-utilities/commit/1f247c23
Tree: http://git-wip-us.apache.org/repos/asf/flex-utilities/tree/1f247c23
Diff: http://git-wip-us.apache.org/repos/asf/flex-utilities/diff/1f247c23

Branch: refs/heads/develop
Commit: 1f247c238a1552515283a9ae830efd1e644d8222
Parents: 697ea8e
Author: Piotr Zarzycki <pi...@gmail.com>
Authored: Tue Oct 24 16:33:26 2017 +0200
Committer: Piotr Zarzycki <pi...@gmail.com>
Committed: Tue Oct 24 16:33:26 2017 +0200

----------------------------------------------------------------------
 MD5Checker/build.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/1f247c23/MD5Checker/build.xml
----------------------------------------------------------------------
diff --git a/MD5Checker/build.xml b/MD5Checker/build.xml
index f51e847..aedbebd 100644
--- a/MD5Checker/build.xml
+++ b/MD5Checker/build.xml
@@ -30,10 +30,10 @@
         use the environment variable, if it exists. Else if windows, use FLEX_HOME_WIN
         else use FLEX_HOME_MAC, which are both defined in build.properties.
     -->
-    <condition property="FLEX_HOME" value="${env.FLEX_HOME}">
+    <condition property="FLEX_HOME" value="d:\flex_sdk\flex_4.16">
         <isset property="env.FLEX_HOME" />
     </condition>
-    <condition property="AIR_HOME" value="${env.AIR_HOME}">
+    <condition property="AIR_HOME" value="d:\flex_sdk\flex_4.16">
         <isset property="env.AIR_HOME" />
     </condition>
 
@@ -78,7 +78,7 @@
     <target name="load-task" >
         <!-- load the <mxmlc> task; we can't do this at the <project> level -->
         <!-- because targets that run before flexTasks.jar gets built would fail -->
-        <taskdef resource="flexTasks.tasks" classpath="${FLEX_HOME}/ant/lib/flexTasks.jar"/>
+        <taskdef resource="flexTasks.tasks" classpath="${FLEX_HOME}/lib/flexTasks.jar"/>
     </target>
 
     <target name="build" depends="load-task" description="compile it">