You are viewing a plain text version of this content. The canonical link for it is here.
Posted to svn@forrest.apache.org by cr...@apache.org on 2007/04/10 18:04:17 UTC

svn commit: r527170 - /forrest/trunk/main/build.xml

Author: crossley
Date: Tue Apr 10 09:04:16 2007
New Revision: 527170

URL: http://svn.apache.org/viewvc?view=rev&rev=527170
Log:
Don't use <fixcrlf> when preparing the packages. Trouble with non-text files.

Modified:
    forrest/trunk/main/build.xml

Modified: forrest/trunk/main/build.xml
URL: http://svn.apache.org/viewvc/forrest/trunk/main/build.xml?view=diff&rev=527170&r1=527169&r2=527170
==============================================================================
--- forrest/trunk/main/build.xml (original)
+++ forrest/trunk/main/build.xml Tue Apr 10 09:04:16 2007
@@ -105,7 +105,13 @@
     description="Makes release distributions">
     <property name="release-name-bin" value="${name}-${forrest.version}"/>
 <!-- Prepare *.tar.gz for "lf" eol-style systems -->
-    <fixcrlf eol="lf" srcdir="${dist-shbat.dir}" excludes="*.bat"/>
+<!-- FIXME: 2007-04-11
+     Leaving this alone. fixcrlf seems to mess with some images and jar files.
+    <fixcrlf eol="lf" srcdir="${dist-shbat.dir}">
+      <exclude name="**/*.bat"/>
+      <exclude name="**/*.jar"/>
+    </fixcrlf>
+-->
     <tar longfile="gnu" compression="gzip"
       destfile="${dist.dir}/${release-name-bin}.tar.gz" >
       <tarfileset prefix="${release-name-bin}" dir="${dist-shbat.dir}"
@@ -122,7 +128,13 @@
       </tarfileset>
     </tar>
 <!-- Prepare *.zip for "crlf" eol-style systems -->
-    <fixcrlf eol="crlf" srcdir="${dist-shbat.dir}"/>
+<!-- FIXME: 2007-04-11
+     Leaving this alone. fixcrlf seems to mess with some images and jar files.
+    <fixcrlf eol="crlf" srcdir="${dist-shbat.dir}">
+      <exclude name="**/*.sh"/>
+      <exclude name="**/*.jar"/>
+    </fixcrlf>
+-->
     <zip
       file="${dist.dir}/${release-name-bin}.zip" >
       <zipfileset dir="${dist-shbat.dir}" prefix="${release-name-bin}"/>