You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by pe...@apache.org on 2014/02/20 17:44:38 UTC

[2/2] git commit: [flex-asjs] [refs/heads/develop] - Removed build step that would fail and placed it into a comment block.

Removed build step that would fail and placed it into a comment block.


Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/b1c546be
Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/b1c546be
Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/b1c546be

Branch: refs/heads/develop
Commit: b1c546be38583c18c601060b2517689c7ab59ff8
Parents: 3c67860
Author: Peter Ent <pe...@apache.org>
Authored: Thu Feb 20 11:44:24 2014 -0500
Committer: Peter Ent <pe...@apache.org>
Committed: Thu Feb 20 11:44:24 2014 -0500

----------------------------------------------------------------------
 examples/DateChooserExample/build.xml | 4 ++++
 1 file changed, 4 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/b1c546be/examples/DateChooserExample/build.xml
----------------------------------------------------------------------
diff --git a/examples/DateChooserExample/build.xml b/examples/DateChooserExample/build.xml
index ac351a5..15470b1 100644
--- a/examples/DateChooserExample/build.xml
+++ b/examples/DateChooserExample/build.xml
@@ -33,8 +33,12 @@
 
     <include file="${basedir}/../build_example.xml" />
     
+    <target name="main" depends="clean,build_example.compile" description="Clean build of ${example}">
+    </target>
+    <!-- Uncomment to reproduce cross-compilation error in compilejs step
     <target name="main" depends="clean,build_example.compile,build_example.compilejs" description="Clean build of ${example}">
     </target>
+    -->
     
     <target name="clean">
         <delete dir="${basedir}/bin" failonerror="false" />