commit: 7ff843c2cd8011c61617c8307a25db994110d93d Author: Mike Gilbert <floppym <AT> gentoo <DOT> org> AuthorDate: Mon Jun 27 18:50:34 2022 +0000 Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org> CommitDate: Mon Jul 11 04:25:30 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ff843c2
epatch.eclass: call ebegin to balance eend Closes: https://bugs.gentoo.org/840963 Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org> eclass/epatch.eclass | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/eclass/epatch.eclass b/eclass/epatch.eclass index 6a9c460da0a3..6d000419b032 100644 --- a/eclass/epatch.eclass +++ b/eclass/epatch.eclass @@ -236,12 +236,12 @@ epatch() { if [[ ${SINGLE_PATCH} == "yes" ]] ; then if [[ -n ${EPATCH_SINGLE_MSG} ]] ; then - einfo "${EPATCH_SINGLE_MSG}" + ebegin "${EPATCH_SINGLE_MSG}" else - einfo "Applying ${patchname} ..." + ebegin "Applying ${patchname}" fi else - einfo " ${patchname} ..." + ebegin " ${patchname}" fi # Handle aliased patch command #404447 #461568
