From: kkolinko Date: Wed, 23 Dec 2009 01:53:00 +0000 (+0000) Subject: Fix EOLN issues in md5 files generated for our releases. X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=026abc8dfb62d5434079945c18286ddf6adaa3ae;p=tomcat7.0 Fix EOLN issues in md5 files generated for our releases. 1. Do not add an EOLN after checksum value. This was caused by difference in behaviour between Ant 1.6 and 1.7. Ant 1.6 did not add the newline. We could use 'pattern' or 'format' attributes of the task, but those are since Ant 1.7 only, not available in 1.6.5. This solution siplifies code and preserves compatibility with Ant 1.6. 2. Do not add an EOLN after the file name. I removed ${line.separator} from the echoed text. If the build is generated on Windows and verified on *nix, extra CR in a file name will cause complaints. I won't object to using an explicit LF here, though. git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@893375 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/dist.xml b/dist.xml index 9ee0a35aa..f5f630d82 100644 --- a/dist.xml +++ b/dist.xml @@ -313,10 +313,9 @@ Apache Tomcat ${version} native binaries for Win64 AMD64/EMT64 platform. - - + + + @@ -376,10 +375,9 @@ Apache Tomcat ${version} native binaries for Win64 AMD64/EMT64 platform. - - + + + @@ -405,10 +403,9 @@ Apache Tomcat ${version} native binaries for Win64 AMD64/EMT64 platform. - - + + + @@ -436,10 +433,9 @@ Apache Tomcat ${version} native binaries for Win64 AMD64/EMT64 platform. - - + + + @@ -468,10 +464,9 @@ Apache Tomcat ${version} native binaries for Win64 AMD64/EMT64 platform. - - + + + @@ -485,10 +480,9 @@ Apache Tomcat ${version} native binaries for Win64 AMD64/EMT64 platform. - - + + + @@ -549,10 +543,9 @@ Apache Tomcat ${version} native binaries for Win64 AMD64/EMT64 platform. - - + + + @@ -574,10 +567,9 @@ Apache Tomcat ${version} native binaries for Win64 AMD64/EMT64 platform. - - + + + @@ -599,10 +591,9 @@ Apache Tomcat ${version} native binaries for Win64 AMD64/EMT64 platform. - - + + + @@ -615,10 +606,9 @@ Apache Tomcat ${version} native binaries for Win64 AMD64/EMT64 platform. - - + + + @@ -631,10 +621,19 @@ Apache Tomcat ${version} native binaries for Win64 AMD64/EMT64 platform. tarfile="${tomcat.release}/v${version}/src/${final-src.name}.tar.gz"> - - + + + + + + + + + + + + +