commit: 05cb9b8dc15cec1ac19a10f8b700f545e8f3dec4 Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org> AuthorDate: Fri May 15 16:57:21 2020 +0000 Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org> CommitDate: Fri May 15 16:58:11 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05cb9b8d
mozcoreconf-v6.eclass: Work around missing "clang" USE flag in seamonkey Bug: https://bugs.gentoo.org/720316 Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org> eclass/mozcoreconf-v6.eclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eclass/mozcoreconf-v6.eclass b/eclass/mozcoreconf-v6.eclass index 03ffac7914d..04320849a74 100644 --- a/eclass/mozcoreconf-v6.eclass +++ b/eclass/mozcoreconf-v6.eclass @@ -203,7 +203,7 @@ mozconfig_init() { case "${ARCH}" in arm | ppc64) # Reduce the memory requirements for linking - if use clang ; then + if [[ "${PN}" != seamonkey ]] && use clang ; then # Nothing to do :; elif tc-ld-is-gold; then
