summaryrefslogtreecommitdiff
path: root/build.xml
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2010-11-16 06:01:44 +0000
committerPaul Phillips <paulp@improving.org>2010-11-16 06:01:44 +0000
commit764dc81ede76e8013fbb755ce1f2f928f9551acc (patch)
tree927b04f1cbdeef14ec624f37433f4e315ee44778 /build.xml
parent81d659141ae743d1d0ced41961ea6d4461c005ea (diff)
downloadscala-764dc81ede76e8013fbb755ce1f2f928f9551acc.tar.gz
scala-764dc81ede76e8013fbb755ce1f2f928f9551acc.tar.bz2
scala-764dc81ede76e8013fbb755ce1f2f928f9551acc.zip
Switched from ignoring nonexistent directory to...
Switched from ignoring nonexistent directory to creating an empty one to accomodate old underpowered versions of ant. No review.
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml5
1 files changed, 4 insertions, 1 deletions
diff --git a/build.xml b/build.xml
index cfdd01c4ac..5582072810 100644
--- a/build.xml
+++ b/build.xml
@@ -254,8 +254,11 @@ INITIALISATION
<echo level="info" message="Built ${time.human} from revision ${svn.number} with ${java.vm.name} ${java.version}"/>
<!-- Local libs (developer use.) -->
+ <mkdir dir="${lib-extra.dir}"/>
<path id="lib.dir.extra">
- <fileset dir="${lib-extra.dir}" erroronmissingdir="false">
+ <!-- needs ant 1.7.1 -->
+ <!-- <fileset dir="${lib-extra.dir}" erroronmissingdir="false"> -->
+ <fileset dir="${lib-extra.dir}">
<include name="**/*.jar"/>
</fileset>
</path>