diff options
author | Eike Rathke <erack@apache.org> | 2011-08-28 19:47:12 +0000 |
---|---|---|
committer | Eike Rathke <erack@apache.org> | 2011-08-28 19:47:12 +0000 |
commit | ec72c906e6548b0bec386ab25d541799ffeb3353 (patch) | |
tree | 9222246dd3d86c87da1df0e886c64a72ae2e5095 /apache-commons/patches | |
parent | 66b361bdd52f9aa8ddbdfe4b9c248000e8a2460f (diff) |
added missing files
Diffstat (limited to 'apache-commons/patches')
-rw-r--r-- | apache-commons/patches/codec.patch | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/apache-commons/patches/codec.patch b/apache-commons/patches/codec.patch new file mode 100644 index 000000000000..dea25ad263d2 --- /dev/null +++ b/apache-commons/patches/codec.patch @@ -0,0 +1,17 @@ +--- misc/build/commons-codec-1.3/build.xml-old 2008-01-31 15:28:58.000000000 +0100 ++++ misc/build/commons-codec-1.3/build.xml 2008-01-31 15:29:21.000000000 +0100 +@@ -90,14 +90,12 @@ + </target>
+ <target name="dist" depends="compile,javadoc" description="Create binary distribution">
+ <mkdir dir="${dist.home}"/>
+- <copy file="../LICENSE" todir="${dist.home}"/>
+ <copy file="${basedir}/RELEASE-NOTES.txt" todir="${dist.home}"/>
+ <antcall target="jar"/>
+ </target>
+ <target name="jar" depends="compile" description="Create jar">
+ <mkdir dir="${dist.home}"/>
+ <mkdir dir="${build.home}/classes/META-INF"/>
+- <copy file="../LICENSE" tofile="${build.home}/classes/META-INF/LICENSE.txt"/>
+ <jar jarfile="${dist.home}/${final.name}.jar" basedir="${build.home}/classes" manifest="${build.home}/conf/MANIFEST.MF"/>
+ </target>
+ <target name="install-jar" depends="jar" description="--> Installs jar file in ${lib.repo}">
|