You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lenya.apache.org by gr...@apache.org on 2005/05/15 20:52:12 UTC

svn commit: r170250 - /lenya/trunk/src/targets/dist-build.xml

Author: gregor
Date: Sun May 15 11:52:11 2005
New Revision: 170250

URL: http://svn.apache.org/viewcvs?rev=170250&view=rev
Log:
Made sure that linefeeds in batch files are windows-style. Thanks to Paul Ercolino for the hint.

Modified:
    lenya/trunk/src/targets/dist-build.xml

Modified: lenya/trunk/src/targets/dist-build.xml
URL: http://svn.apache.org/viewcvs/lenya/trunk/src/targets/dist-build.xml?rev=170250&r1=170249&r2=170250&view=diff
==============================================================================
--- lenya/trunk/src/targets/dist-build.xml (original)
+++ lenya/trunk/src/targets/dist-build.xml Sun May 15 11:52:11 2005
@@ -57,6 +57,9 @@
 
   	<!-- Make sure linefeeds in shell scripts are UNIX-style -->
    <fixcrlf srcdir="${dist.bin.dir}" eol="lf" includes="*.sh"/>
+
+  	<!-- Make sure linefeeds in batch files are Windows-style -->
+   <fixcrlf srcdir="${dist.bin.dir}" eol="crlf" includes="*.bat"/>
   </target>
 
   <target name="dist-bin" depends="prepare-dist-bin" description="Build a regular binary distribution tar ball">
@@ -121,6 +124,9 @@
 
   	<!-- Make sure linefeeds in shell scripts are UNIX-style -->
    <fixcrlf srcdir="${dist.src.dir}" eol="lf" includes="*.sh"/>
+
+  	<!-- Make sure linefeeds in batch files are Windows-style -->
+   <fixcrlf srcdir="${dist.src.dir}" eol="crlf" includes="*.bat"/>
   </target>
 
   <target name="dist-src" depends="prepare-dist-src" description="Builds a regular tar ball containing the sources for developers">



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@lenya.apache.org
For additional commands, e-mail: commits-help@lenya.apache.org