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:30 UTC

svn commit: r170251 - /lenya/branches/BRANCH_1_2_X/src/targets/dist-build.xml

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

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

Modified:
    lenya/branches/BRANCH_1_2_X/src/targets/dist-build.xml

Modified: lenya/branches/BRANCH_1_2_X/src/targets/dist-build.xml
URL: http://svn.apache.org/viewcvs/lenya/branches/BRANCH_1_2_X/src/targets/dist-build.xml?rev=170251&r1=170250&r2=170251&view=diff
==============================================================================
--- lenya/branches/BRANCH_1_2_X/src/targets/dist-build.xml (original)
+++ lenya/branches/BRANCH_1_2_X/src/targets/dist-build.xml Sun May 15 11:52:30 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">
@@ -127,6 +130,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