You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by ah...@apache.org on 2016/05/02 09:08:16 UTC

git commit: [flex-asjs] [refs/heads/develop] - try to allow override of asdoc folder

Repository: flex-asjs
Updated Branches:
  refs/heads/develop 6a1a1554d -> 0b7de8699


try to allow override of asdoc folder


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

Branch: refs/heads/develop
Commit: 0b7de8699f4503864bd345a64d521099a7f97820
Parents: 6a1a155
Author: Alex Harui <ah...@apache.org>
Authored: Mon May 2 00:08:11 2016 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Mon May 2 00:08:11 2016 -0700

----------------------------------------------------------------------
 build.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/0b7de869/build.xml
----------------------------------------------------------------------
diff --git a/build.xml b/build.xml
index 6bb5fa0..793701e 100644
--- a/build.xml
+++ b/build.xml
@@ -1011,9 +1011,9 @@
     <target name="asdoc-package" description="Package the asdocs">      
         <antcall target="clean-temp"/>
         <antcall target="asdoc"/>
-        
+        <property name="doc_output" value="${basedir}/asdoc-output" />
         <copy todir="${basedir}/temp/asdoc">
-            <fileset dir="${basedir}/asdoc-output"/>
+            <fileset dir="${doc_output}"/>
         </copy>
         <copy todir="${basedir}/temp/asdoc" file="${basedir}/NOTICE" />
         <copy tofile="${basedir}/temp/asdoc/LICENSE" file="${basedir}/LICENSE.base" />