summaryrefslogtreecommitdiff
path: root/apache-commons/patches/codec.patch
blob: 7a9b4893daf7839ec83e367b56844a857f02b8d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
--- misc/build/commons-codec-1.6-src/build.xml-old	2012-05-05 22:12:32.000000000 -0500
+++ misc/build/commons-codec-1.6-src/build.xml	2012-05-05 22:16:00.000000000 -0500
@@ -96,7 +96,6 @@
     </target>
     <target name="dist" depends="compile, javadoc" description="Create binary distribution">
         <mkdir dir="${dist.home}"/>
-        <copy file="${basedir}/LICENSE.txt" todir="${dist.home}"/>
         <copy file="${basedir}/NOTICE.txt" todir="${dist.home}"/>
         <copy file="${basedir}/RELEASE-NOTES.txt" todir="${dist.home}"/>
         <antcall target="jar"/>
@@ -104,8 +103,7 @@
     <target name="jar" depends="compile" description="Create jar">
         <mkdir dir="${dist.home}"/>
         <mkdir dir="${build.home}/classes/META-INF"/>
-        <copy file="${basedir}/LICENSE.txt" tofile="${build.home}/classes/META-INF/LICENSE.txt"/>
-        <copy file="${basedir}/LICENSE.txt" tofile="${build.home}/classes/META-INF/NOTICE.txt"/>
+        <copy file="${basedir}/NOTICE.txt" tofile="${build.home}/classes/META-INF/NOTICE.txt"/>
         <jar jarfile="${dist.home}/${final.name}.jar" basedir="${build.home}/classes">
             <manifest>
                 <attribute name="Specification-Title" value="Commons Codec"/>