OS X does not like quotes here

This commit is contained in:
Ben Fry
2016-08-19 14:11:22 -04:00
parent bcd7f9daf2
commit 3f0ed67d8c
2 changed files with 3 additions and 2 deletions
+2 -2
View File
@@ -956,9 +956,9 @@ public class JavaBuild {
if (embedJava) {
// if people don't embed Java, it might be a mess, but what can we do?
if (exportPlatform == PConstants.MACOSX) {
runOptions.append("-Djava.ext.dirs=\"$APP_ROOT/Contents/PlugIns/jdk" +
runOptions.append("-Djava.ext.dirs=$APP_ROOT/Contents/PlugIns/jdk" +
PApplet.javaVersionName +
".jdk/Contents/Home/jre/lib/ext\"");
".jdk/Contents/Home/jre/lib/ext");
} else if (exportPlatform == PConstants.WINDOWS) {
runOptions.append("-Djava.ext.dirs=\"%EXEDIR%/java/lib/ext\"");
} else if (exportPlatform == PConstants.LINUX) {
+1
View File
@@ -6,6 +6,7 @@ X https://github.com/processing/processing/issues/4623
_ might be ext.dirs trouble with spaces in path names?
_ or the backwards slashes?
X fixes for Python Mode crashing on startup
_ JavaInputHandler not registering
_ library compilations handled oddly
_ https://github.com/processing/processing/issues/4630