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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 8C3491382C5 for ; Fri, 5 Jun 2020 10:40:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A4E52E093E; Fri, 5 Jun 2020 10:40:37 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 757FAE093E for ; Fri, 5 Jun 2020 10:40:37 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4984934F2BD for ; Fri, 5 Jun 2020 10:40:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DA975268 for ; Fri, 5 Jun 2020 10:40:32 +0000 (UTC) From: "Thomas Deutschmann" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Thomas Deutschmann" Message-ID: <1591353184.de520cd80fa8eb3c0b1adfaecbdf2b8060c95d27.whissi@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-client/firefox/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-client/firefox/firefox-68.9.0.ebuild www-client/firefox/firefox-77.0.1.ebuild X-VCS-Directories: www-client/firefox/ X-VCS-Committer: whissi X-VCS-Committer-Name: Thomas Deutschmann X-VCS-Revision: de520cd80fa8eb3c0b1adfaecbdf2b8060c95d27 X-VCS-Branch: master Date: Fri, 5 Jun 2020 10:40:32 +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: 92d52ed9-a286-42ff-9c44-991edc5fb192 X-Archives-Hash: 5d47ca8123efc735790a3b37bc3e0df9 commit: de520cd80fa8eb3c0b1adfaecbdf2b8060c95d27 Author: Sergei Trofimovich gentoo org> AuthorDate: Fri Jun 5 10:31:36 2020 +0000 Commit: Thomas Deutschmann gentoo org> CommitDate: Fri Jun 5 10:33:04 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de520cd8 www-client/firefox: fix building against sys-devel/binutils-config[-native-symlinks] Bug: https://bugs.gentoo.org/727160 Package-Manager: Portage-2.3.100, Repoman-2.3.22 Signed-off-by: Thomas Deutschmann gentoo.org> www-client/firefox/firefox-68.9.0.ebuild | 1 + www-client/firefox/firefox-77.0.1.ebuild | 1 + 2 files changed, 2 insertions(+) diff --git a/www-client/firefox/firefox-68.9.0.ebuild b/www-client/firefox/firefox-68.9.0.ebuild index e7df4802647..a4306330c0d 100644 --- a/www-client/firefox/firefox-68.9.0.ebuild +++ b/www-client/firefox/firefox-68.9.0.ebuild @@ -521,6 +521,7 @@ src_configure() { # Set both --target and --host as mozilla uses python to guess values otherwise mozconfig_annotate '' --target="${CHOST}" mozconfig_annotate '' --host="${CBUILD:-${CHOST}}" + mozconfig_annotate '' --with-toolchain-prefix="${CHOST}-" if use system-libevent ; then mozconfig_annotate '' --with-system-libevent="${SYSROOT}${EPREFIX}"/usr fi diff --git a/www-client/firefox/firefox-77.0.1.ebuild b/www-client/firefox/firefox-77.0.1.ebuild index a596b48c52e..3b122387db5 100644 --- a/www-client/firefox/firefox-77.0.1.ebuild +++ b/www-client/firefox/firefox-77.0.1.ebuild @@ -540,6 +540,7 @@ src_configure() { # Set both --target and --host as mozilla uses python to guess values otherwise mozconfig_annotate '' --target="${CHOST}" mozconfig_annotate '' --host="${CBUILD:-${CHOST}}" + mozconfig_annotate '' --with-toolchain-prefix="${CHOST}-" if use system-libevent ; then mozconfig_annotate '' --with-system-libevent="${SYSROOT}${EPREFIX}"/usr fi