commit:     cfad8158b77d70f92698d1d616f778cd8d4656b1
Author:     James Le Cuirot <chewi <AT> gentoo <DOT> org>
AuthorDate: Thu Dec  8 09:16:41 2022 +0000
Commit:     James Le Cuirot <chewi <AT> gentoo <DOT> org>
CommitDate: Tue Dec 27 23:48:47 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cfad8158

acct-group.eclass: Don't modify groups when EPREFIX is non-empty

This was happening when running a prefix as root, which we don't really
support, but also when building a prefixed system under ROOT.

Closes: https://bugs.gentoo.org/779181
Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org>

 eclass/acct-group.eclass | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/eclass/acct-group.eclass b/eclass/acct-group.eclass
index 590a2f20ed8e..f55c9f4c9587 100644
--- a/eclass/acct-group.eclass
+++ b/eclass/acct-group.eclass
@@ -157,7 +157,7 @@ acct-group_src_install() {
 acct-group_pkg_preinst() {
        debug-print-function ${FUNCNAME} "${@}"
 
-       if [[ ${EUID} -ne 0 ]]; then
+       if [[ ${EUID} -ne 0 || -n ${EPREFIX} ]]; then
                einfo "Insufficient privileges to execute ${FUNCNAME[0]}"
                return
        fi

Reply via email to