Hi,
I'm building Debian package of commons-lang and found that the build.xml
try to copy ../LICENSE file instead of LICENSE.txt. I attached the
simple patch (replace the two occurences).
Best regards,
-- Arnaud Vandyck, STE fi, ULg
Formateur Cellule Programmation.
Index: build.xml
===================================================================
RCS file: /home/cvspublic/jakarta-commons/lang/build.xml,v
retrieving revision 1.12
diff -u -r1.12 build.xml
--- build.xml 31 May 2003 18:44:36 -0000 1.12
+++ build.xml 3 Jul 2003 10:50:48 -0000
@@ -79,14 +79,14 @@
</target>
<target name="dist" depends="compile,javadoc" description="Create binary
distribution">
<mkdir dir="${dist.home}"/>
- <copy file="../LICENSE" todir="${dist.home}"/>
+ <copy file="LICENSE.txt" todir="${dist.home}"/>
<copy file="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"/>
+ <copy file="LICENSE.txt" 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}">
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]