diff options
author | Sam James <sam@gentoo.org> | 2021-03-31 04:30:53 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2021-06-20 22:46:31 +0100 |
commit | e3d44fc71b6f388535f480373496ba447c2f4a9b (patch) | |
tree | a794325fa607f3cd703be6fb1e2f10913e04e634 /eclass | |
parent | toolchain.eclass: add TODO to audit inherits (diff) | |
download | gentoo-e3d44fc71b6f388535f480373496ba447c2f4a9b.tar.gz gentoo-e3d44fc71b6f388535f480373496ba447c2f4a9b.tar.bz2 gentoo-e3d44fc71b6f388535f480373496ba447c2f4a9b.zip |
user.eclass: update _assert_pkg_ebuild_phase fatal error
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/user.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/user.eclass b/eclass/user.eclass index ef89c065bd80..2d69da3a651f 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 } |