You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@uima.apache.org by sc...@apache.org on 2007/07/06 19:13:50 UTC

svn commit: r553961 - /incubator/uima/uimaj/trunk/uima-docbook-tool/build/build-docbook.xml

Author: schor
Date: Fri Jul  6 10:13:48 2007
New Revision: 553961

URL: http://svn.apache.org/viewvc?view=rev&rev=553961
Log:
[UIMA-484] insure temp dir created before downloading components

Modified:
    incubator/uima/uimaj/trunk/uima-docbook-tool/build/build-docbook.xml

Modified: incubator/uima/uimaj/trunk/uima-docbook-tool/build/build-docbook.xml
URL: http://svn.apache.org/viewvc/incubator/uima/uimaj/trunk/uima-docbook-tool/build/build-docbook.xml?view=diff&rev=553961&r1=553960&r2=553961
==============================================================================
--- incubator/uima/uimaj/trunk/uima-docbook-tool/build/build-docbook.xml (original)
+++ incubator/uima/uimaj/trunk/uima-docbook-tool/build/build-docbook.xml Fri Jul  6 10:13:48 2007
@@ -143,9 +143,12 @@
 	<!-- ==                                                                       == -->
 	<!-- =========================================================================== -->
 	<target name="prepare" depends="setup-common-properties-per-build, setup-availables, 
-		     test-saxon-available, test-docbook-available, test-jai-available">
-		<mkdir dir="${tmp.dir}"/>
+		make-temp-dir, test-saxon-available, test-docbook-available, test-jai-available">
 	</target>
+	
+	<target name="make-temp-dir">
+		<mkdir dir="${tmp.dir}"/>
+  </target>
 	
 	<target name="setup-availables">
 		<available file="${saxon.dir}/saxon.jar" property="saxon.available"/>