diff options
author | Lars Wendler <polynomial-c@gentoo.org> | 2020-05-15 18:57:21 +0200 |
---|---|---|
committer | Lars Wendler <polynomial-c@gentoo.org> | 2020-05-15 18:58:11 +0200 |
commit | 05cb9b8dc15cec1ac19a10f8b700f545e8f3dec4 (patch) | |
tree | e46fa92daa1735493016801db332b59cd2c3a162 /eclass | |
parent | sys-fs/cryptsetup: Removed old (diff) | |
download | gentoo-05cb9b8dc15cec1ac19a10f8b700f545e8f3dec4.tar.gz gentoo-05cb9b8dc15cec1ac19a10f8b700f545e8f3dec4.tar.bz2 gentoo-05cb9b8dc15cec1ac19a10f8b700f545e8f3dec4.zip |
mozcoreconf-v6.eclass: Work around missing "clang" USE flag in seamonkey
Bug: https://bugs.gentoo.org/720316
Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/mozcoreconf-v6.eclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eclass/mozcoreconf-v6.eclass b/eclass/mozcoreconf-v6.eclass index 03ffac7914dc..04320849a747 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 |