dev-lang/zig: do not die on eselect in pkg_postrm

Per PMS:
> Ebuilds are allowed to call them in pkg_preinst and pkg_postinst.
> Ebuilds may also call them in pkg_prerm and pkg_postrm but must not
> rely on them being available.

Bug: https://bugs.gentoo.org/949225
Signed-off-by: Eric Joldasov <bratishkaerik@landless-city.net>
Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
Eric Joldasov
2025-02-04 21:51:58 +05:00
committed by Sam James
parent 7cdd301e55
commit 9cbe02e307
2 changed files with 2 additions and 2 deletions

View File

@@ -271,5 +271,5 @@ pkg_postinst() {
}
pkg_postrm() {
eselect zig update ifunset || die
eselect zig update ifunset
}

View File

@@ -344,5 +344,5 @@ pkg_postinst() {
}
pkg_postrm() {
eselect zig update ifunset || die
eselect zig update ifunset
}