Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/
Date: Wed, 31 Mar 2021 05:35:15
Message-Id: 1617168886.0439e032a4564d80bc51143085235619cba316e7.sam@gentoo
1 commit: 0439e032a4564d80bc51143085235619cba316e7
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Sat Mar 27 20:41:32 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Wed Mar 31 05:34:46 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0439e032
7
8 autotools.eclass: minor cosmetic changes to various elogs
9
10 Signed-off-by: Sam James <sam <AT> gentoo.org>
11
12 eclass/autotools.eclass | 10 +++++-----
13 1 file changed, 5 insertions(+), 5 deletions(-)
14
15 diff --git a/eclass/autotools.eclass b/eclass/autotools.eclass
16 index f54454597ee..3e6906cb469 100644
17 --- a/eclass/autotools.eclass
18 +++ b/eclass/autotools.eclass
19 @@ -524,11 +524,11 @@ autotools_run_tool() {
20 done
21
22 if [[ ${EBUILD_PHASE} != "unpack" && ${EBUILD_PHASE} != "prepare" ]]; then
23 - ewarn "QA Warning: running $1 in ${EBUILD_PHASE} phase"
24 + ewarn "QA Warning: running '$1' in ${EBUILD_PHASE} phase"
25 fi
26
27 if ${missing_ok} && ! type -P ${1} >/dev/null ; then
28 - einfo "Skipping '$*' due $1 not installed"
29 + einfo "Skipping '$*' because '$1' not installed"
30 return 0
31 fi
32
33 @@ -563,13 +563,13 @@ autotools_run_tool() {
34 "$@" >> "${STDERR_TARGET}" 2>&1
35 if ! eend $? && ${autofail} ; then
36 echo
37 - eerror "Failed Running $1 !"
38 + eerror "Failed running '$1'!"
39 eerror
40 - eerror "Include in your bugreport the contents of:"
41 + eerror "Include in your bug report the contents of:"
42 eerror
43 eerror " ${STDERR_TARGET}"
44 echo
45 - die "Failed Running $1 !"
46 + die "Failed running '$1'!"
47 fi
48 }