diff options
author | Mike Gilbert <floppym@gentoo.org> | 2022-06-27 14:50:34 -0400 |
---|---|---|
committer | Mike Gilbert <floppym@gentoo.org> | 2022-07-11 00:25:30 -0400 |
commit | 7ff843c2cd8011c61617c8307a25db994110d93d (patch) | |
tree | 772e07739e8c74052953533e2f2051e884096af4 /eclass/epatch.eclass | |
parent | media-plugins/audacious-plugins: bump to 4.2 (diff) | |
download | gentoo-7ff843c2cd8011c61617c8307a25db994110d93d.tar.gz gentoo-7ff843c2cd8011c61617c8307a25db994110d93d.tar.bz2 gentoo-7ff843c2cd8011c61617c8307a25db994110d93d.zip |
epatch.eclass: call ebegin to balance eend
Closes: https://bugs.gentoo.org/840963
Signed-off-by: Mike Gilbert <floppym@gentoo.org>
Diffstat (limited to 'eclass/epatch.eclass')
-rw-r--r-- | eclass/epatch.eclass | 6 |
1 files 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 |