Repository: flex-falcon Updated Branches: refs/heads/develop 52eaf4cf3 -> 1f27ba264
maybe another windows issue Project: http://git-wip-us.apache.org/repos/asf/flex-falcon/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-falcon/commit/1f27ba26 Tree: http://git-wip-us.apache.org/repos/asf/flex-falcon/tree/1f27ba26 Diff: http://git-wip-us.apache.org/repos/asf/flex-falcon/diff/1f27ba26 Branch: refs/heads/develop Commit: 1f27ba264b788e2f6ccf2ca2baa8181fc0be3202 Parents: 52eaf4c Author: Alex Harui <[email protected]> Authored: Mon Dec 12 11:08:15 2016 -0800 Committer: Alex Harui <[email protected]> Committed: Mon Dec 12 11:08:15 2016 -0800 ---------------------------------------------------------------------- .../src/main/java/org/apache/flex/compiler/clients/ASDOCJSC.java | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/1f27ba26/compiler-jx/src/main/java/org/apache/flex/compiler/clients/ASDOCJSC.java ---------------------------------------------------------------------- diff --git a/compiler-jx/src/main/java/org/apache/flex/compiler/clients/ASDOCJSC.java b/compiler-jx/src/main/java/org/apache/flex/compiler/clients/ASDOCJSC.java index abc9118..cafd5c6 100644 --- a/compiler-jx/src/main/java/org/apache/flex/compiler/clients/ASDOCJSC.java +++ b/compiler-jx/src/main/java/org/apache/flex/compiler/clients/ASDOCJSC.java @@ -218,6 +218,7 @@ public class ASDOCJSC extends MXMLJSC if (externs.contains(symbol)) continue; if (excludeClasses.contains(symbol)) continue; String sourceFile = cu.getAbsoluteFilename(); + sourceFile = sourceFile.replace("\\", "/"); if (excludeSources.contains(sourceFile)) continue; final File outputClassFile = getOutputClassFile(
