Updated Branches: refs/heads/develop 44c3c633d -> 0eb72d8bc
[FalconJX] fix default (relative) path The default path to the ASJS libraries needed fixing after the move to git. Signed-off-by: Erik de Bruin <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/flex-falcon/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-falcon/commit/d9e8fea9 Tree: http://git-wip-us.apache.org/repos/asf/flex-falcon/tree/d9e8fea9 Diff: http://git-wip-us.apache.org/repos/asf/flex-falcon/diff/d9e8fea9 Branch: refs/heads/develop Commit: d9e8fea936b4983dcaba50679ac10275477bdbd5 Parents: 44c3c63 Author: Erik de Bruin <[email protected]> Authored: Tue Apr 9 15:38:31 2013 +0200 Committer: Erik de Bruin <[email protected]> Committed: Tue Apr 9 15:38:31 2013 +0200 ---------------------------------------------------------------------- .../apache/flex/compiler/utils/EnvProperties.java | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/d9e8fea9/compiler.jx.tests/src/org/apache/flex/compiler/utils/EnvProperties.java ---------------------------------------------------------------------- diff --git a/compiler.jx.tests/src/org/apache/flex/compiler/utils/EnvProperties.java b/compiler.jx.tests/src/org/apache/flex/compiler/utils/EnvProperties.java index efe356c..5418691 100644 --- a/compiler.jx.tests/src/org/apache/flex/compiler/utils/EnvProperties.java +++ b/compiler.jx.tests/src/org/apache/flex/compiler/utils/EnvProperties.java @@ -114,7 +114,7 @@ public class EnvProperties ASJS = p.getProperty("ASJS_HOME", System.getenv("ASJS_HOME")); if (ASJS == null) ASJS = FilenameNormalization - .normalize("../../../repo_again/asjs/branches/develop"); + .normalize("../../flex-asjs"); System.out.println("environment property - ASJS_HOME = " + ASJS); }
