summaryrefslogtreecommitdiff
path: root/build.xml
diff options
context:
space:
mode:
authorPhilipp Haller <hallerp@gmail.com>2008-02-12 10:28:56 +0000
committerPhilipp Haller <hallerp@gmail.com>2008-02-12 10:28:56 +0000
commit01e533c0c804e3a7f66e3619e660f85cd379db1a (patch)
tree448ec1c4f94843d08fb6e461b1a636960515f493 /build.xml
parent614a08f31d9429e6b142264c4cda8b80f33a5eae (diff)
downloadscala-01e533c0c804e3a7f66e3619e660f85cd379db1a.tar.gz
scala-01e533c0c804e3a7f66e3619e660f85cd379db1a.tar.bz2
scala-01e533c0c804e3a7f66e3619e660f85cd379db1a.zip
Fixed dest dir in build of partest
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/build.xml b/build.xml
index ace2ffe637..2399a3d544 100644
--- a/build.xml
+++ b/build.xml
@@ -1315,9 +1315,9 @@ TEST
<mkdir dir="${strap.dir}/lib/partest"/>
<javac
srcdir="${src.dir}/partest"
- destdir="${quick.dir}/lib/partest"
+ destdir="${strap.dir}/lib/partest"
source="1.4" target="1.4" deprecation="yes"
- classpath="${quick.dir}/lib/partest"
+ classpath="${strap.dir}/lib/partest"
includes="scala/tools/partest/**/*.java"/>
<quick
srcdir="${src.dir}/partest"