Gentoo Archives: gentoo-commits

From: Florian Schmaus <flow@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/eselect-java:master commit in: src/modules/
Date: Mon, 27 Jun 2022 06:49:19
Message-Id: 1656312548.78b919bb302830f94afce614cbc6cf8efcba749d.flow@gentoo
1 commit: 78b919bb302830f94afce614cbc6cf8efcba749d
2 Author: Mike Gilbert <floppym <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jun 26 15:44:35 2022 +0000
4 Commit: Florian Schmaus <flow <AT> gentoo <DOT> org>
5 CommitDate: Mon Jun 27 06:49:08 2022 +0000
6 URL: https://gitweb.gentoo.org/proj/eselect-java.git/commit/?id=78b919bb
7
8 java-vm.eselect: remove trailing slash from VM_BASE
9
10 All uses of this variable already append a slash, which results in a
11 double slash when running 'eselect java-vm set'.
12
13 Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org>
14 Signed-off-by: Florian Schmaus <flow <AT> gentoo.org>
15
16 src/modules/java-vm.eselect.in | 2 +-
17 1 file changed, 1 insertion(+), 1 deletion(-)
18
19 diff --git a/src/modules/java-vm.eselect.in b/src/modules/java-vm.eselect.in
20 index 7c46ff1..d2fdd7a 100644
21 --- a/src/modules/java-vm.eselect.in
22 +++ b/src/modules/java-vm.eselect.in
23 @@ -6,7 +6,7 @@ DESCRIPTION="Manage the Java system and user VM"
24 MAINTAINER="java@g.o"
25 VERSION="@VERSION@"
26
27 -VM_BASE="${EROOT}/usr/lib/jvm/"
28 +VM_BASE="${EROOT}/usr/lib/jvm"
29 VM_SYSTEM="${EROOT}/etc/java-config-2/current-system-vm"
30 VM_USER="${HOME}/.gentoo${EPREFIX}/java-config-2/current-user-vm"
31 VM_CONFIG="${EROOT}/usr/share/java-config-2/vm"