Details
-
Bug
-
Status: Resolved
-
Blocker
-
Resolution: Fixed
-
Apache FalconJX 0.6.0
-
None
-
Linux x64, jdk1.8.0
Description
In file compiler/build.xml, "JFlex.jar" should be "jflex.jar", otherwise linux can't find the right jar.
THE DIFF:
diff --git a/compiler/build.xml b/compiler/build.xml
index a3a389a..140a04f 100644
— a/compiler/build.xml
+++ b/compiler/build.xml
@@ -121,7 +121,7 @@
<attribute name="skeleton" default="${compiler}/src/org/apache/flex/compiler/internal/parsing/as/skeleton.default"/>
<attribute name="output"/>
<sequential>
- <java jar="${compiler}/lib/JFlex.jar" fork="true">
+ <java jar="${compiler}/lib/jflex.jar" fork="true">
<arg value="-d"/>
<arg value="@ {output}"/>
<arg value="-q"/>