diff options
author | Ulrich Müller <ulm@gentoo.org> | 2023-05-12 19:34:59 +0200 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2023-10-21 10:01:25 +0200 |
commit | 76a7c3c61f6e3779452b6b3675c32bda02c8c88c (patch) | |
tree | 66cf469fec4e5415ff060f401d6eb5058e659949 /bin | |
parent | prep{,all}strip: Ban in ebuild scope (diff) | |
download | portage-76a7c3c61f6e3779452b6b3675c32bda02c8c88c.tar.gz portage-76a7c3c61f6e3779452b6b3675c32bda02c8c88c.tar.bz2 portage-76a7c3c61f6e3779452b6b3675c32bda02c8c88c.zip |
portageq: Ban in ebuild scope
Closes: https://bugs.gentoo.org/906129
Signed-off-by: Ulrich Müller <ulm@gentoo.org>
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/ebuild-helpers/portageq | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/ebuild-helpers/portageq b/bin/ebuild-helpers/portageq index e3926e11a..bd9d6b044 100755 --- a/bin/ebuild-helpers/portageq +++ b/bin/ebuild-helpers/portageq @@ -4,5 +4,5 @@ source "${PORTAGE_BIN_PATH}"/isolated-functions.sh || exit 1 -eqawarn "QA Notice: '${0##*/}' is not allowed in ebuild scope" -exec "${PORTAGE_BIN_PATH}"/portageq-wrapper "$@" +die "'${0##*/}' is not allowed in ebuild scope" +exit 1 |