commit: e3d44fc71b6f388535f480373496ba447c2f4a9b
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 31 03:30:53 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Jun 20 21:46:31 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e3d44fc7
user.eclass: update _assert_pkg_ebuild_phase fatal error
Signed-off-by: Sam James <sam <AT> gentoo.org>
eclass/user.eclass | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/eclass/user.eclass b/eclass/user.eclass
index ef89c065bd8..2d69da3a651 100644
--- a/eclass/user.eclass
+++ b/eclass/user.eclass
@@ -39,8 +39,8 @@ _assert_pkg_ebuild_phase() {
*)
eerror "'$1()' called from '${EBUILD_PHASE}' phase which is not
OK:"
eerror "You may only call from pkg_{setup,{pre,post}{inst,rm}}
functions."
- eerror "Package fails at QA and at life. Please file a bug."
- die "Bad package! $1 is only for use in some pkg_* functions!"
+ eerror "Package has serious QA issues. Please file a bug."
+ die "Bad package! ${1} is only for use in some pkg_*
functions!"
esac
}