summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Gilbert <floppym@gentoo.org>2022-06-27 14:50:34 -0400
committerMike Gilbert <floppym@gentoo.org>2022-07-11 00:25:30 -0400
commit7ff843c2cd8011c61617c8307a25db994110d93d (patch)
tree772e07739e8c74052953533e2f2051e884096af4 /eclass/epatch.eclass
parentmedia-plugins/audacious-plugins: bump to 4.2 (diff)
downloadgentoo-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.eclass6
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