summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPetteri Räty <betelgeuse@gentoo.org>2007-01-13 16:36:54 +0000
committerPetteri Räty <betelgeuse@gentoo.org>2007-01-13 16:36:54 +0000
commita7a84fe39fa62241a65f42f3660cfb7a4179913f (patch)
tree856d1a96fdbb5c97f6214a35512ff545860aaea0 /dev-java/java-config/files
parentStable on x86, bug #159822. (diff)
downloadgentoo-2-a7a84fe39fa62241a65f42f3660cfb7a4179913f.tar.gz
gentoo-2-a7a84fe39fa62241a65f42f3660cfb7a4179913f.tar.bz2
gentoo-2-a7a84fe39fa62241a65f42f3660cfb7a4179913f.zip
The csh profile.d had a bug preventing it from working for root. Teaches you not to blindly trust stuff from users again.
(Portage version: 2.1.2_rc4-r7)
Diffstat (limited to 'dev-java/java-config/files')
-rw-r--r--dev-java/java-config/files/digest-java-config-2.0.31-r23
-rw-r--r--dev-java/java-config/files/java-config-2.profiled.csh4
2 files changed, 5 insertions, 2 deletions
diff --git a/dev-java/java-config/files/digest-java-config-2.0.31-r2 b/dev-java/java-config/files/digest-java-config-2.0.31-r2
new file mode 100644
index 000000000000..393d9dbec4ef
--- /dev/null
+++ b/dev-java/java-config/files/digest-java-config-2.0.31-r2
@@ -0,0 +1,3 @@
+MD5 36b7893b20b9f4b6f0af6dd632703745 java-config-2.0.31.tar.bz2 17001
+RMD160 4b3d8362538b435a642312ee7289824d6662e309 java-config-2.0.31.tar.bz2 17001
+SHA256 314ec1783da8190d60e757aaef2af8eae7281c3c9754024e3e59643ce7a30752 java-config-2.0.31.tar.bz2 17001
diff --git a/dev-java/java-config/files/java-config-2.profiled.csh b/dev-java/java-config/files/java-config-2.profiled.csh
index ee9b65f7d4ac..f2957d1a622d 100644
--- a/dev-java/java-config/files/java-config-2.profiled.csh
+++ b/dev-java/java-config/files/java-config-2.profiled.csh
@@ -1,6 +1,6 @@
# 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.csh,v 1.1 2007/01/12 17:57:48 betelgeuse Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-java/java-config/files/java-config-2.profiled.csh,v 1.2 2007/01/13 16:36:54 betelgeuse Exp $
set gentoo_user_vm="${HOME}/.gentoo/java-config-2/current-user-vm"
set gentoo_system_vm="/etc/java-config-2/current-system-vm"
@@ -9,7 +9,7 @@ set gentoo_system_vm="/etc/java-config-2/current-system-vm"
## Otherwise set to the current system vm
if (($uid != "0") && (-l $gentoo_user_vm)) then
setenv JAVA_HOME $gentoo_user_vm
-else if (-L $gentoo_system_vm) then
+else if (-l $gentoo_system_vm) then
setenv JAVA_HOME $gentoo_system_vm
endif