Repository: flex-asjs Updated Branches: refs/heads/develop 694ad7961 -> 6ffe46ab5
fix some issues in provisioning script Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/6ffe46ab Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/6ffe46ab Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/6ffe46ab Branch: refs/heads/develop Commit: 6ffe46ab55c7aaaa7e51f3b371d5bf9ce615e283 Parents: 694ad79 Author: Alex Harui <[email protected]> Authored: Mon Aug 24 09:38:31 2015 -0700 Committer: Alex Harui <[email protected]> Committed: Mon Aug 24 09:38:31 2015 -0700 ---------------------------------------------------------------------- build.xml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/6ffe46ab/build.xml ---------------------------------------------------------------------- diff --git a/build.xml b/build.xml index 5caef77..24ea5d3 100644 --- a/build.xml +++ b/build.xml @@ -265,10 +265,10 @@ unless="FLEX_SDK_HOME"/> <condition property="mxmlc.jar.exists"> - <available file="${env.FLEX_HOME}/lib/mxmlc.jar" type="file"/> + <available file="${FLEX_SDK_HOME}/lib/mxmlc.jar" type="file"/> </condition> - <fail message="The directory ${env.FLEX_HOME} does not contain mxmlc.jar" + <fail message="The directory ${FLEX_SDK_HOME} does not contain mxmlc.jar" unless="mxmlc.jar.exists"/> </target> @@ -1526,7 +1526,7 @@ <condition property="defaultPath" value="${env.HOME}/git/apache/flex"> <os family="mac" /> </condition> - <property name="defaultPath" value="${env.HOME}\\git\\apache\\flex" /> + <property name="defaultPath" value="c:\git\apache\flex" /> <input message="Enter absolute path to a folder. The folder will be created if it doesn't exist." defaultvalue="${defaultPath}" @@ -1683,6 +1683,7 @@ message="This script will now download and compile lots of files. This can take several minutes. No interaction should be required. Press the enter key to continue." /> <ant dir="${base.folder.name}/flex-sdk" /> + <property name="javadoc.zip.uptodate" value="set" /> <!-- javadoc fails on windows? --> <ant dir="${base.folder.name}/flex-falcon/compiler" /> <ant dir="${base.folder.name}/flex-falcon/compiler.jx" /> <ant dir="${base.folder.name}/flex-flexunit" />
