summaryrefslogtreecommitdiff
path: root/build.xml
diff options
context:
space:
mode:
authormichelou <michelou@epfl.ch>2006-07-14 17:33:32 +0000
committermichelou <michelou@epfl.ch>2006-07-14 17:33:32 +0000
commit90f48c4fbea8ead08e0b1198cbf761b399cfb631 (patch)
tree77729b740acc89352e9d5dacfa6ff8de2edff3ff /build.xml
parent78f9cc60cf472c03ccf23c9ca1ecef269e646bce (diff)
downloadscala-90f48c4fbea8ead08e0b1198cbf761b399cfb631.tar.gz
scala-90f48c4fbea8ead08e0b1198cbf761b399cfb631.tar.bz2
scala-90f48c4fbea8ead08e0b1198cbf761b399cfb631.zip
fixed EOLs for Windows batch files
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml12
1 files changed, 12 insertions, 0 deletions
diff --git a/build.xml b/build.xml
index 286576a0bc..163a1675de 100644
--- a/build.xml
+++ b/build.xml
@@ -354,6 +354,10 @@ BUILD LOCAL REFERENCE (LOCKER) LAYER
file="${locker.dir}/bin/${scaladoc.exec.name}"/>
<chmod perm="ugo+rx"
file="${locker.dir}/bin/${fsc.exec.name}"/>
+ <fixcrlf
+ srcdir="${locker.dir}/bin"
+ eol="dos"
+ includes="**/*.bat"/>
<!-- Mark LOCKER as being completely built -->
<touch file="${locker.dir}/complete" verbose="no"/>
</target>
@@ -484,6 +488,10 @@ BUILD QUICK-TEST LAYER
file="${quick.dir}/bin/${scaladoc.exec.name}"/>
<chmod perm="ugo+rx"
file="${quick.dir}/bin/${fsc.exec.name}"/>
+ <fixcrlf
+ srcdir="${quick.dir}/bin"
+ eol="dos"
+ includes="**/*.bat"/>
</target>
<target name="test.quick" depends="build">
@@ -615,6 +623,10 @@ TEST
file="${strap.dir}/bin/${scaladoc.exec.name}"/>
<chmod perm="ugo+rx"
file="${strap.dir}/bin/${fsc.exec.name}"/>
+ <fixcrlf
+ srcdir="${strap.dir}/bin"
+ eol="dos"
+ includes="**/*.bat"/>
</target>
<!-- Compares quick and test level -->