Author: jschneider
Date: Fri Feb 12 15:08:39 2010
New Revision: 909448
URL: http://svn.apache.org/viewvc?rev=909448&view=rev
Log:
Fixed bug causing documentation to be dumped at the root of the distribution
archives rather than in the doc directory.
Modified:
ant/ivy/ivyde/branches/2.1.0/build.xml
Modified: ant/ivy/ivyde/branches/2.1.0/build.xml
URL:
http://svn.apache.org/viewvc/ant/ivy/ivyde/branches/2.1.0/build.xml?rev=909448&r1=909447&r2=909448&view=diff
==============================================================================
--- ant/ivy/ivyde/branches/2.1.0/build.xml (original)
+++ ant/ivy/ivyde/branches/2.1.0/build.xml Fri Feb 12 15:08:39 2010
@@ -149,8 +149,8 @@
<condition property="overwrite">
<isfalse value="${checkUpToDate}" />
</condition>
- <mkdir dir="${dist.work.dir}/apache-ivyde-${build.version}" />
- <copy todir="${dist.work.dir}/apache-ivyde-${build.version}"
overwrite="${overwrite}">
+ <mkdir dir="${dist.work.dir}/apache-ivyde-${build.version}/doc" />
+ <copy todir="${dist.work.dir}/apache-ivyde-${build.version}/doc"
overwrite="${overwrite}">
<fileset dir="${src.doc.dir}">
<include name="style/**" />
<include name="js/**" />
@@ -162,8 +162,8 @@
<target name="generate-dist-doc-html">
<taskdef uri="antlib:xooki" file="${basedir}/doc/xooki/antlib.xml" />
<property name="checkUpToDate" value="true" />
- <mkdir dir="${dist.work.dir}/apache-ivyde-${build.version}" />
- <xooki:generate
destDir="${dist.work.dir}/apache-ivyde-${build.version}"
checkUpToDate="${checkUpToDate}">
+ <mkdir dir="${dist.work.dir}/apache-ivyde-${build.version}/doc" />
+ <xooki:generate
destDir="${dist.work.dir}/apache-ivyde-${build.version}/doc"
checkUpToDate="${checkUpToDate}">
<fileset dir="${src.doc.dir}">
<include name="**/*.html" />
<exclude name="template*.html" />