View Single Post
Old 22nd July 2015
ibara ibara is offline
OpenBSD language porter
 
Join Date: Jan 2014
Posts: 783
Default

Quote:
Originally Posted by ocicat View Post
Now that it has been established that the fundamental problem was a path accessibility issue
The underlying problem is slightly more subtle. While being aware of path accessibility did fix the symptom, something is broken with either the jdk or javaPathHelper package.

The source of that problem though, I have no idea. Could be user error, a bad mirror, or a bad package. I don't have a 5.7-release machine nor the time to figure that out.

Quote:
Originally Posted by mattthumper View Post
I'll set my $PATH and $JAVA_HOME (?) accordingly.
It would be better if you did the following:
Code:
$ cd ~
$ mkdir -p bin
$ echo '#!/bin/sh' > bin/netbeans
$ echo 'PATH=/usr/local/jdk-1.7.0/bin:$PATH exec /usr/local/netbeans/bin/netbeans --jdkhome /usr/local/jdk-1.7.0' >> bin/netbeans
Reply With Quote