Author: bayard
Date: Sat Sep 3 18:23:32 2005
New Revision: 267537
URL: http://svn.apache.org/viewcvs?rev=267537&view=rev
Log:
use the copy of LICENSE in http and not the parent directory so it will build
under gump. Means you get .txt in the filename in the jar, but I do not think
that will matter
Modified:
jakarta/commons/dormant/http/trunk/build.xml
Modified: jakarta/commons/dormant/http/trunk/build.xml
URL:
http://svn.apache.org/viewcvs/jakarta/commons/dormant/http/trunk/build.xml?rev=267537&r1=267536&r2=267537&view=diff
==============================================================================
--- jakarta/commons/dormant/http/trunk/build.xml (original)
+++ jakarta/commons/dormant/http/trunk/build.xml Sat Sep 3 18:23:32 2005
@@ -189,7 +189,7 @@
<target name="dist" depends="compile,javadoc"
description="Create binary distribution">
<mkdir dir="${dist.home}"/>
- <copy file="../LICENSE"
+ <copy file="LICENSE.txt"
todir="${dist.home}"/>
<copy file="RELEASE-NOTES.txt"
todir="${dist.home}"/>
@@ -201,7 +201,7 @@
description="Create jar">
<mkdir dir="${dist.home}"/>
<mkdir dir="${build.home}/classes/META-INF"/>
- <copy file="../LICENSE"
+ <copy file="LICENSE.txt"
tofile="${build.home}/classes/META-INF/LICENSE.txt"/>
<jar jarfile="${dist.home}/commons-${component.name}.jar"
basedir="${build.home}/classes"
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]