Added APPDIR to classpath for exported linux applications

This commit is contained in:
kfeuz
2015-02-03 23:17:53 -07:00
parent 95fdbf62a4
commit 7b9a5f1736

View File

@@ -1430,9 +1430,9 @@ public class JavaBuild {
exportClassPath.append(jarList[i]);
}
} else {
exportClassPath.append("$APPDIR");
for (int i = 0; i < jarList.length; i++) {
if (i != 0) exportClassPath.append(":");
exportClassPath.append("$APPDIR/lib/" + jarList[i]);
exportClassPath.append(":$APPDIR/lib/" + jarList[i]);
}
}