<target name="build-html" depends="xinclude" description="Generates HTML files from DocBook XML">
<xslt style="${myhtml.stylesheet}" extension=".html" basedir="${outputtmp.dir}" destdir="${article.dir}">
<include name="**/*article.xml" />
<classpath refid="saxon.class.path" />
</xslt>
</target>
If I replace ${myhtml.stylesheet} (which points to a customizing layer of docbook.xsl) with a reference to chunks.xsl, the output is written to the currrent directory and not the defined destdir.
This is a strange issue for me as I can see no reason why this should happen. Did anyone ran into this already and know how to solve it?