diff options
author | 2021-03-27 20:41:32 +0000 | |
---|---|---|
committer | 2021-03-31 06:34:46 +0100 | |
commit | 0439e032a4564d80bc51143085235619cba316e7 (patch) | |
tree | 2ac9d37ae7b1f7fc6368185afb2a6400d5a7b744 /eclass | |
parent | autotools.eclass: fix whitespace/phrasing in comment (diff) | |
download | gentoo-0439e032a4564d80bc51143085235619cba316e7.tar.gz gentoo-0439e032a4564d80bc51143085235619cba316e7.tar.bz2 gentoo-0439e032a4564d80bc51143085235619cba316e7.zip |
autotools.eclass: minor cosmetic changes to various elogs
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/autotools.eclass | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/eclass/autotools.eclass b/eclass/autotools.eclass index f54454597ee9..3e6906cb469a 100644 --- a/eclass/autotools.eclass +++ b/eclass/autotools.eclass @@ -524,11 +524,11 @@ autotools_run_tool() { done if [[ ${EBUILD_PHASE} != "unpack" && ${EBUILD_PHASE} != "prepare" ]]; then - ewarn "QA Warning: running $1 in ${EBUILD_PHASE} phase" + ewarn "QA Warning: running '$1' in ${EBUILD_PHASE} phase" fi if ${missing_ok} && ! type -P ${1} >/dev/null ; then - einfo "Skipping '$*' due $1 not installed" + einfo "Skipping '$*' because '$1' not installed" return 0 fi @@ -563,13 +563,13 @@ autotools_run_tool() { "$@" >> "${STDERR_TARGET}" 2>&1 if ! eend $? && ${autofail} ; then echo - eerror "Failed Running $1 !" + eerror "Failed running '$1'!" 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 Running $1 !" + die "Failed running '$1'!" fi } |