diff options
author | Mike Gilbert <floppym@gentoo.org> | 2022-07-03 15:41:40 -0400 |
---|---|---|
committer | Mike Gilbert <floppym@gentoo.org> | 2022-07-09 15:54:48 -0400 |
commit | 008c98f7c3f94865d361f785f195b61c518a19c6 (patch) | |
tree | 236b8221e7d57344baf1618351ae9efacca98891 /eclass | |
parent | www-client/epiphany: Version bump to 42.3 (diff) | |
download | gentoo-008c98f7c3f94865d361f785f195b61c518a19c6.tar.gz gentoo-008c98f7c3f94865d361f785f195b61c518a19c6.tar.bz2 gentoo-008c98f7c3f94865d361f785f195b61c518a19c6.zip |
ruby-ng.eclass: replace ebegin with einfo in _ruby_invoke_environment
Calling ebegin here makes no sense because it is likely that the called
function will also generate output. This will lead to the "[ ok ]"
potentially appearing many lines later.
It also leads to nested ebegin calls, which make no sense for the same
reason.
Closes: https://bugs.gentoo.org/839585
Closes: https://bugs.gentoo.org/839588
Signed-off-by: Mike Gilbert <floppym@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/ruby-ng.eclass | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/eclass/ruby-ng.eclass b/eclass/ruby-ng.eclass index f0d6c4f6f6c4..c43d5b4d9826 100644 --- a/eclass/ruby-ng.eclass +++ b/eclass/ruby-ng.eclass @@ -410,9 +410,8 @@ _ruby_invoke_environment() { pushd "${WORKDIR}" &>/dev/null || die fi - ebegin "Running ${_PHASE:-${EBUILD_PHASE}} phase for $environment" + einfo "Running ${_PHASE:-${EBUILD_PHASE}} phase for $environment" "$@" - eend $? popd &>/dev/null || die S=${old_S} |