Fabyan Alexander
Fabyan Alexander

Reputation: 25

Adjust Bundle JRE for MAC inInstall4j

I'm using Install4j to create a installer of a JavaFx application for OSX and it must include a bundle JRE (jre 1.7_0_51). I need to move the file /lib/jfxrt.jar to /lib/ext/jfxrt.jar to force Java to load the JavaFX libs.

Is there a way to do this?

UPDATE:

I've forget to add a little info about the bundle, the file jfxrt.jar is inside the bundle.

Upvotes: 1

Views: 87

Answers (2)

Ingo Kegel
Ingo Kegel

Reputation: 48005

In install4j, you can use a "Move files and directories" action to move a file.

Upvotes: 1

ninnemannk
ninnemannk

Reputation: 1296

run this:

$: mkdir /lib/ext
$: mv /lib/jfxrt.jar /lib/ext/jfxrt.jar

Upvotes: 0

Related Questions