Updated Branches: refs/heads/develop c39c3f4ce -> d1b6cecc1
Adding in the main build.xml fix for the TLF_Home to the ASDOC build.xml Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/d1b6cecc Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/d1b6cecc Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/d1b6cecc Branch: refs/heads/develop Commit: d1b6cecc1acabc98d6d1bfb3d90871c9315e11f1 Parents: c39c3f4 Author: Mark Kessler <[email protected]> Authored: Sun Jul 21 21:41:43 2013 -0400 Committer: Mark Kessler <[email protected]> Committed: Sun Jul 21 21:42:07 2013 -0400 ---------------------------------------------------------------------- asdoc/build.xml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/d1b6cecc/asdoc/build.xml ---------------------------------------------------------------------- diff --git a/asdoc/build.xml b/asdoc/build.xml index df941ae..8803daf 100644 --- a/asdoc/build.xml +++ b/asdoc/build.xml @@ -26,6 +26,21 @@ <property environment="env"/> <property file="${FLEX_HOME}/build.properties"/> + <available file="${FLEX_HOME}/../flex-tlf/textLayout" + type="dir" + property="TLF_HOME" + value="${FLEX_HOME}/../flex-tlf" /> + + <available file="${FLEX_HOME}/../tlf/textLayout" + type="dir" + property="TLF_HOME" + value="${FLEX_HOME}/../tlf" /> + + <available file="${env.TLF_HOME}" + type="dir" + property="TLF_HOME" + value="${env.TLF_HOME}"/> + <target name="main" depends="clean,doc" description="Clean build of all ASDocs"/> <target name="clean" description="Cleans all ASDocs">
