diff options
author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2010-12-21 22:17:01 +0100 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2010-12-22 09:28:29 +0100 |
commit | b260648065724a73ef4ec84f8e4b17d771576822 (patch) | |
tree | fcc0079e3e36fbacc4f89caa2ecebe8b57c8de12 | |
parent | 161bcbaf8876e41e9ec6a6478d4444e144df5a92 (diff) | |
download | lombok-b260648065724a73ef4ec84f8e4b17d771576822.tar.gz lombok-b260648065724a73ef4ec84f8e4b17d771576822.tar.bz2 lombok-b260648065724a73ef4ec84f8e4b17d771576822.zip |
Generating LombokizedEclipse.launch was broken on non-macs.
It was also essentially broken on macs, as in, the generated launch only worked on 32-bit eclipses, but the default download these days is a 64-bit cocoa version. Fixed this too.
-rw-r--r-- | build.xml | 8 |
1 files changed, 1 insertions, 7 deletions
@@ -217,15 +217,9 @@ the common tasks and can be called on to run the main aspects of all the sub-scr <apt location="lib/build/spi.jar" /> </ivy:eclipsegen> - <condition property="startOnFirstThread" value="-XstartOnFirstThread"> + <condition property="startOnFirstThread" value="-XstartOnFirstThread" else=""> <os family="mac" /> </condition> - <condition property="d32" value="-d32"> - <os family="mac" /> - </condition> - <condition property="d32" value=""> - <not><os family="mac" /></not> - </condition> <copy file="buildScripts/eclipse-debug-target.template" |