diff options
author | Mike Gilbert <floppym@gentoo.org> | 2022-06-28 14:04:50 -0400 |
---|---|---|
committer | Mike Gilbert <floppym@gentoo.org> | 2022-07-11 00:25:56 -0400 |
commit | 829c4c6851ae5d306a7655293b436f2f620e77c8 (patch) | |
tree | e4cb90f08d0a24b45589c10151147e6955a85911 /eclass/epatch.eclass | |
parent | epatch.eclass: call ebegin to balance eend (diff) | |
download | gentoo-829c4c6851ae5d306a7655293b436f2f620e77c8.tar.gz gentoo-829c4c6851ae5d306a7655293b436f2f620e77c8.tar.bz2 gentoo-829c4c6851ae5d306a7655293b436f2f620e77c8.zip |
epatch.eclass: drop support for EPATCH_SINGLE_MSG
Signed-off-by: Mike Gilbert <floppym@gentoo.org>
Diffstat (limited to 'eclass/epatch.eclass')
-rw-r--r-- | eclass/epatch.eclass | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/eclass/epatch.eclass b/eclass/epatch.eclass index 6d000419b032..7c53e5fcf539 100644 --- a/eclass/epatch.eclass +++ b/eclass/epatch.eclass @@ -52,10 +52,6 @@ EPATCH_COMMON_OPTS="-g0 -E --no-backup-if-mismatch" # List of patches not to apply. Note this is only file names, # and not the full path. Globs accepted. EPATCH_EXCLUDE="" -# @VARIABLE: EPATCH_SINGLE_MSG -# @DESCRIPTION: -# Change the printed message for a single patch. -EPATCH_SINGLE_MSG="" # @VARIABLE: EPATCH_MULTI_MSG # @DESCRIPTION: # Change the printed message for multiple patches. @@ -235,11 +231,7 @@ epatch() { fi if [[ ${SINGLE_PATCH} == "yes" ]] ; then - if [[ -n ${EPATCH_SINGLE_MSG} ]] ; then - ebegin "${EPATCH_SINGLE_MSG}" - else - ebegin "Applying ${patchname}" - fi + ebegin "Applying ${patchname}" else ebegin " ${patchname}" fi |