You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by bo...@apache.org on 2011/09/29 11:47:20 UTC

svn commit: r1177243 - /logging/log4net/trunk/log4net.build

Author: bodewig
Date: Thu Sep 29 09:47:20 2011
New Revision: 1177243

URL: http://svn.apache.org/viewvc?rev=1177243&view=rev
Log:
Use <call> rather than <target depends=''>.  I think this is more in line with the philosophy of NAnt - or at least this build file

Modified:
    logging/log4net/trunk/log4net.build

Modified: logging/log4net/trunk/log4net.build
URL: http://svn.apache.org/viewvc/logging/log4net/trunk/log4net.build?rev=1177243&r1=1177242&r2=1177243&view=diff
==============================================================================
--- logging/log4net/trunk/log4net.build (original)
+++ logging/log4net/trunk/log4net.build Thu Sep 29 09:47:20 2011
@@ -1313,9 +1313,10 @@ limitations under the License.
       </fileset>
     </copy>
   </target>
-  <target name="package" depends="set-package-configuration" description="Build and Package distribution">
+  <target name="package" description="Build and Package distribution">
     <!-- set flag to indicating that this is a package build -->
     <property name="project.build.package" value="true" />
+    <call target="set-package-configuration" />
     <!-- copies the sources to the current package directory -->
     <call target="package-src" />
     <!-- compile all build configurations for all runtime configurations  -->
@@ -1326,7 +1327,7 @@ limitations under the License.
     <!-- create the package distribution zipfile -->
     <call target="create-package-zipfiles" />
   </target>
-  <target name="package-src" depends="set-package-configuration">
+  <target name="package-src">
     <copy todir="${current.package.src.dir}">
       <fileset basedir=".">
         <include name="KEYS"/>