Author: czadra
Date: Sat Nov 24 08:25:40 2012
New Revision: 1413149
URL: http://svn.apache.org/viewvc?rev=1413149&view=rev
Log:
use relative path in MANIFEST for compiler.jar, removed copy of asc.jar in
build.xml
Modified:
incubator/flex/falcon/trunk/compiler.js/README
incubator/flex/falcon/trunk/compiler.js/bin/mxmlc
incubator/flex/falcon/trunk/compiler.js/build.xml
Modified: incubator/flex/falcon/trunk/compiler.js/README
URL:
http://svn.apache.org/viewvc/incubator/flex/falcon/trunk/compiler.js/README?rev=1413149&r1=1413148&r2=1413149&view=diff
==============================================================================
--- incubator/flex/falcon/trunk/compiler.js/README (original)
+++ incubator/flex/falcon/trunk/compiler.js/README Sat Nov 24 08:25:40 2012
@@ -9,3 +9,5 @@ Before trying to build FalconJS, you mus
To run FalconJS, use the bin/mxmlc script. Pass in the .as file of the
top-level application like you would normally pass it in to mxmlc with all of
the same options.
+Example for running FalconJS : ../bin/mxmlc MainCode.as -output MainCode.js
+
Modified: incubator/flex/falcon/trunk/compiler.js/bin/mxmlc
URL:
http://svn.apache.org/viewvc/incubator/flex/falcon/trunk/compiler.js/bin/mxmlc?rev=1413149&r1=1413148&r2=1413149&view=diff
==============================================================================
--- incubator/flex/falcon/trunk/compiler.js/bin/mxmlc (original)
+++ incubator/flex/falcon/trunk/compiler.js/bin/mxmlc Sat Nov 24 08:25:40 2012
@@ -35,8 +35,7 @@ echo Using Falcon codebase: $FALCON_HOME
if [ "x${FLEX_HOME}" = "x" ]
then
- SCRIPT_HOME=`dirname $0`
- FLEX_HOME=${SCRIPT_HOME}/..
+ FLEX_HOME=${FALCON_HOME}/generated/dist/sdk
fi
echo Using Flex SDK: $FLEX_HOME
Modified: incubator/flex/falcon/trunk/compiler.js/build.xml
URL:
http://svn.apache.org/viewvc/incubator/flex/falcon/trunk/compiler.js/build.xml?rev=1413149&r1=1413148&r2=1413149&view=diff
==============================================================================
--- incubator/flex/falcon/trunk/compiler.js/build.xml (original)
+++ incubator/flex/falcon/trunk/compiler.js/build.xml Sat Nov 24 08:25:40 2012
@@ -188,7 +188,7 @@
<target name="jar" depends="compile">
- <property name="jar.classpath" value="antlr.jar commons-cli.jar
commons-io.jar org.apache.felix.framework-3.0.2.jar guava.jar
google/closure-compiler/compiler.jar ${falcon.dist.dir}/sdk/lib/compiler.jar"/>
+ <property name="jar.classpath" value="antlr.jar commons-cli.jar
commons-io.jar org.apache.felix.framework-3.0.2.jar guava.jar
google/closure-compiler/compiler.jar
../../compiler/generated/dist/sdk/lib/compiler.jar"/>
<echo message="Building ${jsc.jar}"/>
<jar file="${jsc.jar}" basedir="${classes.dir}"
@@ -232,7 +232,6 @@
<filelist dir="${build.lib.dir}">
<file name="mxmlc.jar"/>
<file name="compc.jar"/>
- <file name="asc.jar"/>
<file name="jsc.jar"/>
</filelist>
</copy>