diff options
author | Thomas Deutschmann <whissi@gentoo.org> | 2021-07-13 23:10:04 +0200 |
---|---|---|
committer | Thomas Deutschmann <whissi@gentoo.org> | 2021-07-13 23:25:51 +0200 |
commit | 9398e90f9e5a9b7d50de53c03bf416a8cdf4067a (patch) | |
tree | 256ad3c4de05aecd6bf017cf99630e6e28b80076 /mail-client/thunderbird | |
parent | mail-client/thunderbird: bump to v78.12.0 (diff) | |
download | gentoo-9398e90f9e5a9b7d50de53c03bf416a8cdf4067a.tar.gz gentoo-9398e90f9e5a9b7d50de53c03bf416a8cdf4067a.tar.bz2 gentoo-9398e90f9e5a9b7d50de53c03bf416a8cdf4067a.zip |
mail-client/thunderbird: downgrading ewarn to einfo in llvm_check_deps
Bug: https://bugs.gentoo.org/795351
Package-Manager: Portage-3.0.21, Repoman-3.0.3
Signed-off-by: Thomas Deutschmann <whissi@gentoo.org>
Diffstat (limited to 'mail-client/thunderbird')
-rw-r--r-- | mail-client/thunderbird/thunderbird-78.12.0.ebuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mail-client/thunderbird/thunderbird-78.12.0.ebuild b/mail-client/thunderbird/thunderbird-78.12.0.ebuild index 782510d30b91..d5a0e95087de 100644 --- a/mail-client/thunderbird/thunderbird-78.12.0.ebuild +++ b/mail-client/thunderbird/thunderbird-78.12.0.ebuild @@ -193,19 +193,19 @@ S="${WORKDIR}/${PN}-${PV%_*}" llvm_check_deps() { if ! has_version -b "sys-devel/clang:${LLVM_SLOT}" ; then - ewarn "sys-devel/clang:${LLVM_SLOT} is missing! Cannot use LLVM slot ${LLVM_SLOT} ..." >&2 + einfo "sys-devel/clang:${LLVM_SLOT} is missing! Cannot use LLVM slot ${LLVM_SLOT} ..." >&2 return 1 fi if use clang ; then if ! has_version -b "=sys-devel/lld-${LLVM_SLOT}*" ; then - ewarn "=sys-devel/lld-${LLVM_SLOT}* is missing! Cannot use LLVM slot ${LLVM_SLOT} ..." >&2 + einfo "=sys-devel/lld-${LLVM_SLOT}* is missing! Cannot use LLVM slot ${LLVM_SLOT} ..." >&2 return 1 fi if use pgo ; then if ! has_version -b "=sys-libs/compiler-rt-sanitizers-${LLVM_SLOT}*" ; then - ewarn "=sys-libs/compiler-rt-sanitizers-${LLVM_SLOT}* is missing! Cannot use LLVM slot ${LLVM_SLOT} ..." >&2 + einfo "=sys-libs/compiler-rt-sanitizers-${LLVM_SLOT}* is missing! Cannot use LLVM slot ${LLVM_SLOT} ..." >&2 return 1 fi fi |