morgand 02/01/03 14:28:52
Modified: latka buildApp.xml
Log:
shell scripts now have correct EndOfLine for each OS
Revision Changes Path
1.4 +3 -4 jakarta-commons/latka/buildApp.xml
Index: buildApp.xml
===================================================================
RCS file: /home/cvs/jakarta-commons/latka/buildApp.xml,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- buildApp.xml 15 Oct 2001 16:07:42 -0000 1.3
+++ buildApp.xml 3 Jan 2002 22:28:52 -0000 1.4
@@ -1,4 +1,4 @@
-<!-- $Id: buildApp.xml,v 1.3 2001/10/15 16:07:42 morgand Exp $ -->
+<!-- $Id: buildApp.xml,v 1.4 2002/01/03 22:28:52 morgand Exp $ -->
<project name="buildAllLatka" default="init" basedir=".">
<target name="init">
@@ -55,9 +55,8 @@
<mkdir dir="${dest.app}"/>
<mkdir dir="${dest.app}/bin"/>
- <copy todir="${dest.app}/bin">
- <fileset dir="${basedir}/bin"/>
- </copy>
+ <fixcrlf srcDir="${basedir}/bin" destDir="${dest.app}/bin" includes="*.bat" eol="crlf"/>
+ <fixcrlf srcDir="${basedir}/bin" destDir="${dest.app}/bin" includes="*.sh" eol="lf"/>
<mkdir dir="${dest.app}/docs"/>
<copy todir="${dest.app}/docs">
--
To unsubscribe, e-mail: <mailto:commons-dev-unsubscribe@jakarta.apache.org>
For additional commands, e-mail: <mailto:commons-dev-help@jakarta.apache.org>
|