You are viewing a plain text version of this content. The canonical link for it is here.
Posted to log4j-dev@logging.apache.org by ca...@apache.org on 2007/05/19 06:49:58 UTC

svn commit: r539686 - /logging/log4j/branches/v1_2-branch/build.xml

Author: carnold
Date: Fri May 18 21:49:55 2007
New Revision: 539686

URL: http://svn.apache.org/viewvc?view=rev&rev=539686
Log:
Bug 37930: Inadvertently removed required mkdir on jar creation

Modified:
    logging/log4j/branches/v1_2-branch/build.xml

Modified: logging/log4j/branches/v1_2-branch/build.xml
URL: http://svn.apache.org/viewvc/logging/log4j/branches/v1_2-branch/build.xml?view=diff&rev=539686&r1=539685&r2=539686
==============================================================================
--- logging/log4j/branches/v1_2-branch/build.xml (original)
+++ logging/log4j/branches/v1_2-branch/build.xml Fri May 18 21:49:55 2007
@@ -460,6 +460,7 @@
  <!-- Create log4j.jar, excluding tests and other odds and ends.        -->
  <!-- ================================================================= -->
   <target name="log4j.jar" depends="build">
+    <mkdir dir="${jar.dest}"/>
     <delete>
       <fileset dir="${jar.dest}">
    			<include name="${jar.filename}"/>
@@ -503,6 +504,7 @@
  <!-- Create log4j-sources.jar                                          -->
  <!-- ================================================================= -->
   <target name="log4j-sources.jar">
+    <mkdir dir="${jar.dest}"/>
     <delete>
       <fileset dir="${jar.dest}" includes="${sources-jar.filename}"/>
     </delete>



---------------------------------------------------------------------
To unsubscribe, e-mail: log4j-dev-unsubscribe@logging.apache.org
For additional commands, e-mail: log4j-dev-help@logging.apache.org