You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by rd...@apache.org on 2005/02/06 20:44:27 UTC

svn commit: r151619 - jakarta/commons/proper/logging/trunk/build.xml

Author: rdonkin
Date: Sun Feb  6 11:44:27 2005
New Revision: 151619

URL: http://svn.apache.org/viewcvs?view=rev&rev=151619
Log:
Fixed bug in distribution build. Issue 33323. Contributed by Brian Stansberry.

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?view=diff&r1=151618&r2=151619
==============================================================================
--- jakarta/commons/proper/logging/trunk/build.xml (original)
+++ jakarta/commons/proper/logging/trunk/build.xml Sun Feb  6 11:44:27 2005
@@ -21,7 +21,7 @@
 
 <!--
         "Logging" component of the Jakarta Commons Subproject
-        $Id: build.xml,v 1.48 2004/11/10 22:59:04 rdonkin Exp $
+        $Id$
 -->
 
 
@@ -432,15 +432,6 @@
   <target name="dist" depends="compile,javadoc"
    description="Create binary distribution">
     <mkdir      dir="${dist.home}"/>
-    <ant antfile='build.xml' target='dist' dir='${optional.home}'/>
-    <copy       todir="${dist.home}">
-        <fileset dir='${optional.dist.home}'>
-            <include name='*.jar'/>
-        </fileset>
-    </copy>
-    <copy       todir="${dist.home}/docs-optional">
-        <fileset dir='${optional.dist.home}/docs'/>
-    </copy>
     <copy      file="LICENSE.txt"
               todir="${dist.home}"/>
     <copy      file="NOTICE.txt"
@@ -451,6 +442,15 @@
           tofile="${dist.home}/commons-${component.name}.jar" />
     <copy file="${build.home}/commons-${component.name}-api.jar"
           tofile="${dist.home}/commons-${component.name}-api.jar" />
+    <ant antfile='build.xml' target='dist' dir='${optional.home}' inheritAll="false" />
+    <copy       todir="${dist.home}">
+        <fileset dir='${optional.dist.home}'>
+            <include name='*.jar'/>
+        </fileset>
+    </copy>
+    <copy       todir="${dist.home}/docs-optional">
+        <fileset dir='${optional.dist.home}/docs'/>
+    </copy>
     <mkdir      dir="${dist.home}/src"/>
     <copy     todir="${dist.home}/src" filtering="on">
       <fileset  dir="${source.home}"/>



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