aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReinier Zwitserloot <reinier@tipit.to>2009-11-27 13:54:41 +0100
committerReinier Zwitserloot <reinier@tipit.to>2009-11-27 13:54:41 +0100
commit4eaf936df5e6666afdd76d154bafea7e59fdba14 (patch)
tree4c236cf26ea21cb65697c4d2f4c9c5ec4c3b2545
parent8c7c764d7fcc2c6c37db38a3d77f5e6d1c7b87a7 (diff)
downloadlombok-4eaf936df5e6666afdd76d154bafea7e59fdba14.tar.gz
lombok-4eaf936df5e6666afdd76d154bafea7e59fdba14.tar.bz2
lombok-4eaf936df5e6666afdd76d154bafea7e59fdba14.zip
Fix on the previous commit involving the compile build script: delombok is now actually compiled. heh.
-rw-r--r--buildScripts/compile.ant.xml3
1 files changed, 1 insertions, 2 deletions
diff --git a/buildScripts/compile.ant.xml b/buildScripts/compile.ant.xml
index 7b48f759..509b9cde 100644
--- a/buildScripts/compile.ant.xml
+++ b/buildScripts/compile.ant.xml
@@ -108,7 +108,6 @@ lombok code including the various agents.
javac 1.5, partly because they completely rewrote large swaths of javac,
and partly because our injection mechanism (annotations) doesn't work very
well on javac 1.5, hence, when using javac, we do demand you're on 1.6. -->
- <echo>s1</echo>
<javac debug="on" destdir="build/lombok" target="1.5" source="1.5">
<src path="src/core" />
<src path="src/installer" />
@@ -117,11 +116,11 @@ lombok code including the various agents.
<classpath refid="deps.path" />
<classpath refid="libs.path" />
</javac>
- <echo>s2</echo>
<javac debug="on" destdir="build/lombok" target="1.6" source="1.6">
<src path="src/core" />
<src path="src/delombok" />
<include name="lombok/javac/**" />
+ <include name="lombok/delombok/**" />
<classpath location="build/lombok" />
<classpath refid="deps.path" />
<classpath refid="libs.path" />