sci-geosciences/grass: skip mapset permission check during install phase

Closes: https://bugs.gentoo.org/974737
Closes: https://codeberg.org/gentoo/gentoo/pulls/1017
Signed-off-by: Mario Haustein <mario.haustein@hrz.tu-chemnitz.de>
Part-of: https://github.com/gentoo/gentoo/pull/46332
Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
Mario Haustein
2026-05-30 17:28:34 +02:00
committed by Sam James
parent d64c3e28da
commit fa6c89c14c
2 changed files with 8 additions and 0 deletions

View File

@@ -202,6 +202,10 @@ src_configure() {
}
src_install() {
# Install phase fails if file owner doesn't match process user. GRASS
# allows to skip this check. See bug #974737.
export GRASS_SKIP_MAPSET_OWNER_CHECK=1
cmake_src_install
pushd "${ED}"/usr/$(get_libdir)/${MY_PM} >/dev/null || die

View File

@@ -202,6 +202,10 @@ src_configure() {
}
src_install() {
# Install phase fails if file owner doesn't match process user. GRASS
# allows to skip this check. See bug #974737.
export GRASS_SKIP_MAPSET_OWNER_CHECK=1
cmake_src_install
pushd "${ED}"/usr/$(get_libdir)/${MY_PM} >/dev/null || die