summaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorJoonas Lehtinen <joonas.lehtinen@itmill.com>2007-02-07 13:01:12 +0000
committerJoonas Lehtinen <joonas.lehtinen@itmill.com>2007-02-07 13:01:12 +0000
commit9fc0cc9c2b32419eb6c1234553defeadfe64eb86 (patch)
treed1fe249702c8ba6c96fdb5e8c4d7a1a68ce1ea8b /build
parentbe3504079060dd4777ddc4eeb71992e88b9f87e9 (diff)
downloadvaadin-framework-9fc0cc9c2b32419eb6c1234553defeadfe64eb86.tar.gz
vaadin-framework-9fc0cc9c2b32419eb6c1234553defeadfe64eb86.zip
Ensure that temporary xsl template used in docbook building is really deleted
svn changeset:517/svn branch:toolkit
Diffstat (limited to 'build')
-rw-r--r--build/build.xml2
1 files changed, 2 insertions, 0 deletions
diff --git a/build/build.xml b/build/build.xml
index 825ae68d37..8def8463ac 100644
--- a/build/build.xml
+++ b/build/build.xml
@@ -284,6 +284,7 @@
</target>
<target name="manual-html" depends="init">
+<delete file="build/docbook/conf/temp.xsl" />
<copy file="build/docbook/conf/custom-html-docbook.xsl" tofile="build/docbook/conf/temp.xsl">
<filterchain>
<replacetokens>
@@ -328,6 +329,7 @@
<!-- Clean results - - - - - - - - - - - - - - - - - - - - - - - - - -->
<target name="clean-all" depends="">
<delete dir="build/result" />
+<delete file="build/docbook/conf/temp.xsl" />
</target>
</project>