Skip to content

Commit 9e9a016

Browse files
committed
this was just doubling this stuff up, oops
1 parent 453529e commit 9e9a016

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

java/src/processing/mode/java/JavaBuild.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1110,8 +1110,10 @@ protected boolean exportApplication(File destFolder,
11101110
String runOptionsStr = runOptions.join(" ");
11111111
pw.print("java " + runOptionsStr +
11121112
" -Djava.library.path=\"$APPDIR:$APPDIR/lib\"" +
1113-
" -Djava.ext.dirs=\"$APPDIR/java/lib/ext\"" +
1114-
" -Djna.nosys=true" +
1113+
// these aren't included here since they're added elsewhere
1114+
// (and only included when Java is embedded)
1115+
//" -Djava.ext.dirs=\"$APPDIR/java/lib/ext\"" +
1116+
//" -Djna.nosys=true" +
11151117
" -cp \"" + exportClassPath + "\"" +
11161118
" " + sketch.getName() + " \"$@\"\n");
11171119

0 commit comments

Comments
 (0)