You are viewing a plain text version of this content. The canonical link for it is here.
Posted to derby-commits@db.apache.org by ka...@apache.org on 2010/09/22 22:52:23 UTC

svn commit: r1000219 - /db/derby/code/trunk/build.xml

Author: kahatlen
Date: Wed Sep 22 20:52:23 2010
New Revision: 1000219

URL: http://svn.apache.org/viewvc?rev=1000219&view=rev
Log:
DERBY-3986: Stop dropping build artifacts in the subversion-controlled
source tree

Ensure that the destination directory for state.properties is
generated before the "sane" or "insane" target is executed.

Modified:
    db/derby/code/trunk/build.xml

Modified: db/derby/code/trunk/build.xml
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/build.xml?rev=1000219&r1=1000218&r2=1000219&view=diff
==============================================================================
--- db/derby/code/trunk/build.xml (original)
+++ db/derby/code/trunk/build.xml Wed Sep 22 20:52:23 2010
@@ -890,13 +890,13 @@
 <!--                     Generate sanity.properties                      -->
 <!-- =================================================================== -->
 
-  <target name="sane">
+  <target name="sane" depends="make-generated-dirs">
     <propertyfile file="${state.file}" comment="${header}">
       <entry key="sanity" value="true" type="string"/>
     </propertyfile>
     <delete dir="${sanity.out.dir}"/>
   </target>
-  <target name="insane">
+  <target name="insane" depends="make-generated-dirs">
     <propertyfile file="${state.file}" comment="${header}">
       <entry key="sanity" value="false" type="string"/>
     </propertyfile>