Open
Description
Currently, the platform/lib/nbexec script contains the following at line 161:
jdkhome=`/usr/libexec/java_home --version 1.8.0+ --failfast`
However, this does not detect the Liberica JDK 8 package correctly. This should be written instead:
jdkhome=`/usr/libexec/java_home --version 1.8 --failfast`
This also conforms to the instructions written in Running_Linux_OSX.txt
. If the nbexec
script is fixed, the JAVA_HOME
must only be set once for the UNIX setup step. After that, it does not even need to be set correctly.