Author: markt
Date: Fri Aug 7 20:33:26 2009
New Revision: 802171
URL: http://svn.apache.org/viewvc?rev=802171&view=rev
Log:
Fix the build script.
Modified:
tomcat/tc5.5.x/trunk/build/build.xml
Modified: tomcat/tc5.5.x/trunk/build/build.xml
URL:
http://svn.apache.org/viewvc/tomcat/tc5.5.x/trunk/build/build.xml?rev=802171&r1=802170&r2=802171&view=diff
==============================================================================
--- tomcat/tc5.5.x/trunk/build/build.xml (original)
+++ tomcat/tc5.5.x/trunk/build/build.xml Fri Aug 7 20:33:26 2009
@@ -30,7 +30,7 @@
<!-- Project Properties -->
<property name="name" value="Apache Tomcat" />
- <property name="year" value="2006" />
+ <property name="year" value="2009" />
<property name="version.major" value="5" />
<property name="version.minor" value="5" />
<property name="version.build" value="0" />
@@ -1303,12 +1303,14 @@
<copy todir="${tomcat.dist}" filtering="true" encoding="ISO-8859-1">
<fileset dir=".">
<include name="INSTALLING.txt"/>
- <include name="LICENSE"/>
- <include name="NOTICE"/>
<include name="README.txt"/>
<include name="RELEASE*"/>
<include name="RUNNING.txt"/>
</fileset>
+ <fileset dir="..">
+ <include name="LICENSE"/>
+ <include name="NOTICE"/>
+ </fileset>
</copy>
<!-- Copy the contents of each "build" directory -->
@@ -1428,6 +1430,11 @@
<fileset dir="${basedir}/resources">
<include name="build.xml" />
</fileset>
+ <fileset dir="..">
+ <include name="LICENSE" />
+ <include name="NOTICE" />
+ <include name="KEYS" />
+ </fileset>
</copy>
<!-- tomcat-5 source -->
@@ -1554,7 +1561,7 @@
description="Create a Tomcat 5 packaged distribution">
<filter token="VERSION" value="${version}"/>
- <copy file="KEYS"
+ <copy file="../KEYS"
todir="${tomcat.release}/v${version}"/>
<copy file="RELEASE-NOTES"
todir="${tomcat.release}/v${version}"
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]