Fix installer.xml... 'ant_on_air' does not grok the 'format' tag. Turns out we don't need it, as 'ant_on_air' DOES understand the DSTAMP variable that is set by the 'tstamp' tag.
Signed-off-by: Erik de Bruin <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/02620ad4 Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/02620ad4 Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/02620ad4 Branch: refs/heads/master Commit: 02620ad400cb26807ea1e9c7c273a5135fac60c9 Parents: 2781c83 Author: Erik de Bruin <[email protected]> Authored: Fri Jan 23 12:03:16 2015 +0100 Committer: Erik de Bruin <[email protected]> Committed: Fri Jan 23 12:03:16 2015 +0100 ---------------------------------------------------------------------- installer.xml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/02620ad4/installer.xml ---------------------------------------------------------------------- diff --git a/installer.xml b/installer.xml index 95b8c36..b77b737 100644 --- a/installer.xml +++ b/installer.xml @@ -775,9 +775,8 @@ <echo>${INFO_INSTALLING_CONFIG_FILES}</echo> <antcall target="fixup-config-files-version" /> <antcall target="fixup-config-files-swfversion" /> - <tstamp> - <format property="build.number.date" pattern="yyyyMMdd" /> - </tstamp> + <tstamp /> + <property name="build.number.date" value="${DSTAMP}" /> <replace file="${FLEX_HOME}/frameworks/flex-config.xml"> <replacefilter token="{playerglobalHome}" value="libs/player"/>
