diff options
author | Sam James <sam@gentoo.org> | 2021-03-28 08:20:13 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2021-03-31 03:02:31 +0100 |
commit | c7cfbf48afb04ef7b1dbc9f43e8e3c0c774cf448 (patch) | |
tree | 056096f5213ce10e5dccb4ad2d92ca0812c454cf /eclass/epatch.eclass | |
parent | cdrom.eclass: fix whitespace in elogs (diff) | |
download | gentoo-c7cfbf48afb04ef7b1dbc9f43e8e3c0c774cf448.tar.gz gentoo-c7cfbf48afb04ef7b1dbc9f43e8e3c0c774cf448.tar.bz2 gentoo-c7cfbf48afb04ef7b1dbc9f43e8e3c0c774cf448.zip |
epatch.eclass: fix whitespace in elogs
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'eclass/epatch.eclass')
-rw-r--r-- | eclass/epatch.eclass | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/eclass/epatch.eclass b/eclass/epatch.eclass index fbb4f0b5bc0d..0c7ca0cf045a 100644 --- a/eclass/epatch.eclass +++ b/eclass/epatch.eclass @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # @ECLASS: epatch.eclass @@ -294,7 +294,7 @@ epatch() { local rel_paths=$(egrep -n '^[-+]{3} [^ ]*[.][.]/' "${PATCH_TARGET}") if [[ -n ${rel_paths} ]] ; then echo - eerror "Rejected Patch: ${patchname} !" + eerror "Rejected Patch: ${patchname}!" eerror " ( ${PATCH_TARGET} )" eerror eerror "Your patch uses relative paths '../':" @@ -359,14 +359,14 @@ epatch() { if [[ ${count} -ge 5 ]] ; then echo - eerror "Failed Patch: ${patchname} !" + eerror "Failed patch: ${patchname}!" eerror " ( ${PATCH_TARGET} )" eerror - eerror "Include in your bugreport the contents of:" + eerror "Include in your bug report the contents of:" eerror eerror " ${STDERR_TARGET}" echo - die "Failed Patch: ${patchname}!" + die "Failed patch: ${patchname}!" fi # if everything worked, delete the full debug patch log |