From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 76D5015806E for ; Sat, 3 Jun 2023 06:09:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B78EBE087E; Sat, 3 Jun 2023 06:09:17 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 98E21E087E for ; Sat, 3 Jun 2023 06:09:17 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A25C0341357 for ; Sat, 3 Jun 2023 06:09:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3050E990 for ; Sat, 3 Jun 2023 06:09:15 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1685772544.8c6e9d78faa844dedd9fd879f297cc3d92dc8320.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-client/firefox/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-client/firefox/firefox-113.0.2.ebuild X-VCS-Directories: www-client/firefox/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: 8c6e9d78faa844dedd9fd879f297cc3d92dc8320 X-VCS-Branch: master Date: Sat, 3 Jun 2023 06:09:15 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 39761ec7-6dad-4589-b742-6a96a4eed0fb X-Archives-Hash: 42443b18ca73609a29035e673c3d8d46 commit: 8c6e9d78faa844dedd9fd879f297cc3d92dc8320 Author: Joonas Niilola gentoo org> AuthorDate: Sat Jun 3 05:27:37 2023 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Sat Jun 3 06:09:04 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c6e9d78 www-client/firefox: invert lld check with mold in 113 - when mold is installed but not configured to be used, lld version check might be ignored. Signed-off-by: Joonas Niilola gentoo.org> www-client/firefox/firefox-113.0.2.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www-client/firefox/firefox-113.0.2.ebuild b/www-client/firefox/firefox-113.0.2.ebuild index 00e00080656d..c0b560f16e62 100644 --- a/www-client/firefox/firefox-113.0.2.ebuild +++ b/www-client/firefox/firefox-113.0.2.ebuild @@ -208,7 +208,7 @@ llvm_check_deps() { return 1 fi - if use clang && tc-ld-is-lld ; then + if use clang && ! tc-ld-is-mold ; then if ! has_version -b "sys-devel/lld:${LLVM_SLOT}" ; then einfo "sys-devel/lld:${LLVM_SLOT} is missing! Cannot use LLVM slot ${LLVM_SLOT} ..." >&2 return 1