commit: 78b919bb302830f94afce614cbc6cf8efcba749d Author: Mike Gilbert <floppym <AT> gentoo <DOT> org> AuthorDate: Sun Jun 26 15:44:35 2022 +0000 Commit: Florian Schmaus <flow <AT> gentoo <DOT> org> CommitDate: Mon Jun 27 06:49:08 2022 +0000 URL: https://gitweb.gentoo.org/proj/eselect-java.git/commit/?id=78b919bb
java-vm.eselect: remove trailing slash from VM_BASE All uses of this variable already append a slash, which results in a double slash when running 'eselect java-vm set'. Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org> Signed-off-by: Florian Schmaus <flow <AT> gentoo.org> src/modules/java-vm.eselect.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/java-vm.eselect.in b/src/modules/java-vm.eselect.in index 7c46ff1..d2fdd7a 100644 --- a/src/modules/java-vm.eselect.in +++ b/src/modules/java-vm.eselect.in @@ -6,7 +6,7 @@ DESCRIPTION="Manage the Java system and user VM" MAINTAINER="[email protected]" VERSION="@VERSION@" -VM_BASE="${EROOT}/usr/lib/jvm/" +VM_BASE="${EROOT}/usr/lib/jvm" VM_SYSTEM="${EROOT}/etc/java-config-2/current-system-vm" VM_USER="${HOME}/.gentoo${EPREFIX}/java-config-2/current-user-vm" VM_CONFIG="${EROOT}/usr/share/java-config-2/vm"
