Author: skitching
Date: Sun Jun 26 16:08:36 2005
New Revision: 201921

URL: http://svn.apache.org/viewcvs?rev=201921&view=rev
Log:
Add dependency on prepare targets for new compile targets, so that if they
are run independently the destination dirs will exist.

Modified:
    jakarta/commons/proper/logging/trunk/build.xml

Modified: jakarta/commons/proper/logging/trunk/build.xml
URL: 
http://svn.apache.org/viewcvs/jakarta/commons/proper/logging/trunk/build.xml?rev=201921&r1=201920&r2=201921&view=diff
==============================================================================
--- jakarta/commons/proper/logging/trunk/build.xml (original)
+++ jakarta/commons/proper/logging/trunk/build.xml Sun Jun 26 16:08:36 2005
@@ -274,7 +274,7 @@
     
depends='log4j12-warning,log4j13-warning,logkit-warning,jdk1.4-warning,avalon-framework-warning'/>
 
   <target name="compile-only" 
-    
depends="init,discovery,warning,show-lib-presence,compile-non-log4j,compile-log4j12,compile-log4j13,build-jar"/>
+    
depends="prepare,discovery,warning,show-lib-presence,compile-non-log4j,compile-log4j12,compile-log4j13,build-jar"/>
 
   <target name="show-lib-presence">
     <echo  message="jdk.1.4.present=${jdk.1.4.present}"/>
@@ -284,7 +284,7 @@
     <echo  message="avalon-framework.present=${avalon-framework.present}"/>
   </target>
 
-  <target name="compile-non-log4j">
+  <target name="compile-non-log4j" depends="prepare">
     <!-- compile everything except Log4J classes -->
     <javac srcdir="${source.home}"
            destdir="${build.home}/classes"
@@ -309,7 +309,7 @@
     </javac>
   </target>
 
-  <target name="compile-log4j12">
+  <target name="compile-log4j12" depends="prepare">
     <!-- compile the log4j1.2 support classes -->
     <javac srcdir="${source.home}"
            destdir="${build.home}/classes"
@@ -333,7 +333,7 @@
     </javac>
   </target>
 
-  <target name="compile-log4j13">
+  <target name="compile-log4j13" depends="prepare">
     <!-- compile the log4j1.3 support classes -->
     <javac srcdir="${source.home}"
            destdir="${build.home}/classes"



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to