fixed EOLs for Windows batch files
git-svn-id: http://lampsvn.epfl.ch/svn-repos/scala/scala/trunk@8167 5e8d7ff9-d8ef-0310-90f0-a4852d11357a
This commit is contained in:
parent
0dcdf88247
commit
ca43afb9da
12
build.xml
12
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 -->
|
||||
|
|
Loading…
Reference in New Issue