summaryrefslogtreecommitdiff
blob: 467196646463ebac3299fb56ad076fff84825fd4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/dev-java/java-config/files/java-config-2.profiled,v 1.1 2006/08/03 02:13:58 nichoj Exp $

# If we have a current-user-vm (and aren't root)... set it to JAVA_HOME
if [[ ${UID} != 0 && -L $HOME/.gentoo/java-config-2/current-user-vm ]]; then
	export JAVA_HOME=$HOME/.gentoo/java-config-2/current-user-vm
# Otherwise set to the current system vm
elif [[ -L /etc/java-config-2/current-system-vm ]]; then
	export JAVA_HOME=/etc/java-config-2/current-system-vm
fi
#