Author: markt Date: Mon Dec 14 10:00:23 2009 New Revision: 890256 URL: http://svn.apache.org/viewvc?rev=890256&view=rev Log: Only apply filtering to the files that need it else non-text files will get corrupted.
Modified: tomcat/trunk/build.xml Modified: tomcat/trunk/build.xml URL: http://svn.apache.org/viewvc/tomcat/trunk/build.xml?rev=890256&r1=890255&r2=890256&view=diff ============================================================================== --- tomcat/trunk/build.xml (original) +++ tomcat/trunk/build.xml Mon Dec 14 10:00:23 2009 @@ -570,14 +570,20 @@ <!-- Copy other regular webapps --> <copy todir="${tomcat.build}/webapps"> - <filterset refid="version.filters"/> <fileset dir="webapps"> <include name="ROOT/**"/> + <exclude name="ROOT/index.html"/> <include name="examples/**"/> <include name="manager/**"/> <include name="host-manager/**"/> </fileset> </copy> + <copy todir="${tomcat.build}/webapps" encoding="ISO-8859-1"> + <filterset refid="version.filters" /> + <fileset dir="webapps"> + <include name="ROOT/index.html"/> + </fileset> + </copy> <copy tofile="${tomcat.build}/webapps/ROOT/RELEASE-NOTES.txt" file="RELEASE-NOTES" encoding="ISO-8859-1"> <filterset refid="version.filters"/> --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org