craigmcc 2003/03/30 16:41:14
Modified: digester build.xml
Log:
Copy LICENSE.txt file we already have, instead of going to our parent
directory. This makes building from source distros easier.
PR: 18455
Submitted by: J.Pietschmann <j3322ptm at yahoo.de>
Revision Changes Path
1.40 +4 -4 jakarta-commons/digester/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-commons/digester/build.xml,v
retrieving revision 1.39
retrieving revision 1.40
diff -u -r1.39 -r1.40
--- build.xml 15 Mar 2003 18:41:04 -0000 1.39
+++ build.xml 31 Mar 2003 00:41:14 -0000 1.40
@@ -170,6 +170,8 @@
<copy todir="${build.home}/classes" filtering="on">
<fileset dir="${source.home}" excludes="**/*.java"/>
</copy>
+ <copy file="LICENSE.txt"
+ todir="${build.home}/classes/META-INF"/>
</target>
@@ -228,11 +230,9 @@
<target name="dist" depends="compile,javadoc"
description="Create binary distribution">
<mkdir dir="${dist.home}"/>
- <copy file="../LICENSE"
+ <copy file="LICENSE.txt"
todir="${dist.home}"/>
<mkdir dir="${build.home}/classes/META-INF"/>
- <copy file="../LICENSE"
- tofile="${build.home}/classes/META-INF/LICENSE.txt"/>
<copy file="RELEASE-NOTES.txt"
todir="${dist.home}"/>
<jar jarfile="${dist.home}/commons-${component.name}.jar"
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]