diff options
author | 2024-04-03 12:05:01 +0200 | |
---|---|---|
committer | 2024-04-04 19:32:56 +0200 | |
commit | 0cec49dbfe44ed391f1dea5fe5b1014ec7df9c05 (patch) | |
tree | 675ed108e63c002d0e3002c6c5960af0ff24258f /eclass | |
parent | dev-util/idea-community: drop 2023.3.6 (diff) | |
download | gentoo-0cec49dbfe44ed391f1dea5fe5b1014ec7df9c05.tar.gz gentoo-0cec49dbfe44ed391f1dea5fe5b1014ec7df9c05.tar.bz2 gentoo-0cec49dbfe44ed391f1dea5fe5b1014ec7df9c05.zip |
elisp-common.eclass: Use EROOT instead of ROOT+EPREFIX
This was a leftover of pre-EAPI-3 compatibility.
Signed-off-by: Ulrich Müller <ulm@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/elisp-common.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/elisp-common.eclass b/eclass/elisp-common.eclass index bab7250a6818..1ea2aa111d7e 100644 --- a/eclass/elisp-common.eclass +++ b/eclass/elisp-common.eclass @@ -1,4 +1,4 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # @ECLASS: elisp-common.eclass @@ -687,7 +687,7 @@ elisp-make-site-file() { # directory. elisp-site-regen() { - local sitelisp=${ROOT%/}${EPREFIX}${SITELISP} + local sitelisp=${EROOT}${SITELISP} local sf i ret=0 null="" page=$'\f' local -a sflist |