Re: default value for configurable bootclasspath in javac
I managed to solve the problem with a script: var bootclasspath = project.getProperty("javac.bootclasspath"); /* bootclasspath="" fails with Eclipse Compiler */ if (bootclasspath)
default value for configurable bootclasspath in javac
Hi. I've got the following in my build xml: The idea is to not alter bootclasspath when the caller did not provide an explicit -Djavac.bootclasspath=... An empty string as the default value works fine with Sun Javac, but it fails wit