Author: gregor
Date: Sat Jun 25 16:27:51 2005
New Revision: 201798
URL: http://svn.apache.org/viewcvs?rev=201798&view=rev
Log:
Made sure that all batch files have their executable bit set.
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=201798&r1=201797&r2=201798&view=diff
==============================================================================
--- lenya/trunk/src/targets/dist-build.xml (original)
+++ lenya/trunk/src/targets/dist-build.xml Sat Jun 25 16:27:51 2005
@@ -54,12 +54,15 @@
<!-- Make shell scripts executable -->
<chmod file="${dist.bin.dir}/*.sh" perm="ugo+rx"/>
+ <chmod file="${dist.bin.dir}/tools/bin/*.sh" perm="ugo+rx"/>
<!-- Make sure linefeeds in shell scripts are UNIX-style -->
<fixcrlf srcdir="${dist.bin.dir}" eol="lf" includes="*.sh"/>
+ <fixcrlf srcdir="${dist.bin.dir}/tools/bin" eol="lf" includes="*.sh"/>
<!-- Make sure linefeeds in batch files are Windows-style -->
<fixcrlf srcdir="${dist.bin.dir}" eol="crlf" includes="*.bat"/>
+ <fixcrlf srcdir="${dist.bin.dir}/tools/bin" eol="crlf" includes="*.bat"/>
</target>
<target name="dist-bin" depends="prepare-dist-bin" description="Build a
regular binary distribution tar ball">
@@ -121,12 +124,18 @@
<!-- Make shell scripts executable -->
<chmod file="${dist.src.dir}/*.sh" perm="ugo+rx"/>
+ <chmod file="${dist.src.dir}/tools/bin/*.sh" perm="ugo+rx"/>
+ <chmod file="${dist.src.dir}/src/webapp/lenya/bin/*.sh" perm="ugo+rx"/>
+ <chmod file="${dist.src.dir}/src/webapp/lenya/bin/replication/*.sh"
perm="ugo+rx"/>
<!-- Make sure linefeeds in shell scripts are UNIX-style -->
<fixcrlf srcdir="${dist.src.dir}" eol="lf" includes="*.sh"/>
+ <fixcrlf srcdir="${dist.src.dir}/tools/bin" eol="lf" includes="*.sh"/>
+ <fixcrlf srcdir="${dist.src.dir}/src/webapp/lenya/bin" eol="lf"
includes="*.sh"/>
<!-- Make sure linefeeds in batch files are Windows-style -->
<fixcrlf srcdir="${dist.src.dir}" eol="crlf" includes="*.bat"/>
+ <fixcrlf srcdir="${dist.src.dir}/tools/bin" eol="crlf" includes="*.bat"/>
</target>
<target name="dist-src" depends="prepare-dist-src" description="Builds a
regular tar ball containing the sources for developers">
|