diff options
author | Ulrich Müller <ulm@gentoo.org> | 2022-03-26 10:28:30 +0100 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2022-03-28 21:47:17 +0200 |
commit | 367ba7457991d008b011eba0b06455276933bf7c (patch) | |
tree | d5d4a0e50bde6ba7210e07feeedc4583c1f5618f /eclass | |
parent | qmail.eclass: Use UID 0 instead of root (diff) | |
download | gentoo-367ba7457991d008b011eba0b06455276933bf7c.tar.gz gentoo-367ba7457991d008b011eba0b06455276933bf7c.tar.bz2 gentoo-367ba7457991d008b011eba0b06455276933bf7c.zip |
toolchain.eclass: Use UID 0 instead of root
Bug: https://bugs.gentoo.org/595908
Signed-off-by: Ulrich Müller <ulm@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/toolchain.eclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass index 495a305ed83e..8788e72efebb 100644 --- a/eclass/toolchain.eclass +++ b/eclass/toolchain.eclass @@ -1780,7 +1780,7 @@ toolchain_src_install() { # Use gid of 0 because some stupid ports don't have # the group 'root' set to gid 0. Send to /dev/null # for people who are testing as non-root. - chown -R root:0 "${D}${LIBPATH}" 2>/dev/null + chown -R 0:0 "${D}${LIBPATH}" 2>/dev/null # Installing gdb pretty-printers into gdb-specific location. local py gdbdir=/usr/share/gdb/auto-load${LIBPATH} |