I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit 37521c69 authored by kytv's avatar kytv
Browse files

look for openjdk6 in OpenBSD if v7 isn't available

parent 43383a5b
No related branches found
No related tags found
No related merge requests found
......@@ -17,6 +17,8 @@ elif [ $UNIXTYPE = "sunos" ]; then
elif [ $UNIXTYPE = "openbsd" ]; then
if [ -d /usr/local/jdk-1.7.0 ]; then
JAVA_HOME="/usr/local/jdk-1.7.0"
elif [ -d /usr/local/jdk-1.6.0 ]; then
JAVA_HOME="/usr/local/jdk-1.6.0"
fi
elif [ $UNIXTYPE = "netbsd" ]; then
if [ -d /usr/pkg/java/openjdk7 ]; then
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment