You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ni...@apache.org on 2009/07/24 10:22:56 UTC

svn commit: r797358 - /commons/proper/codec/trunk/build.xml

Author: niallp
Date: Fri Jul 24 08:22:55 2009
New Revision: 797358

URL: http://svn.apache.org/viewvc?rev=797358&view=rev
Log:
Fix the build I broke :( - thanks to Julius Davies

Modified:
    commons/proper/codec/trunk/build.xml

Modified: commons/proper/codec/trunk/build.xml
URL: http://svn.apache.org/viewvc/commons/proper/codec/trunk/build.xml?rev=797358&r1=797357&r2=797358&view=diff
==============================================================================
--- commons/proper/codec/trunk/build.xml (original)
+++ commons/proper/codec/trunk/build.xml Fri Jul 24 08:22:55 2009
@@ -44,15 +44,11 @@
     <target name="prepare" depends="init" description="Prepare build directory">
         <mkdir dir="${build.home}"/>
         <mkdir dir="${build.home}/classes"/>
-        <mkdir dir="${build.home}/conf"/>
         <mkdir dir="${build.home}/tests"/>
         <mkdir dir="${build.home}/test-reports"/>
     </target>
     <target name="static" depends="prepare" description="Copy static files to build directory">
         <tstamp/>
-        <copy todir="${build.home}/conf" filtering="on">
-            <fileset dir="${conf.home}" includes="*.MF"/>
-        </copy>
     </target>
     <target name="compile" depends="static" description="Compile shareable components">
         <javac srcdir="${source.home}" destdir="${build.home}/classes" debug="${compile.debug}" deprecation="${compile.deprecation}" optimize="${compile.optimize}">