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 964811382C5 for ; Wed, 1 Jul 2020 18:13:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B9552E0880; Wed, 1 Jul 2020 18:13:41 +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 89B3AE0880 for ; Wed, 1 Jul 2020 18:13:41 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 2B9EA34ED80 for ; Wed, 1 Jul 2020 18:13:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 190922BE for ; Wed, 1 Jul 2020 18:13:38 +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: <1593627204.ca1565a6c2cefd1184f2cd830f4d7172fadfd84c.whissi@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/spidermonkey/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lang/spidermonkey/spidermonkey-60.5.2_p0-r4.ebuild X-VCS-Directories: dev-lang/spidermonkey/ X-VCS-Committer: whissi X-VCS-Committer-Name: Thomas Deutschmann X-VCS-Revision: ca1565a6c2cefd1184f2cd830f4d7172fadfd84c X-VCS-Branch: master Date: Wed, 1 Jul 2020 18:13:38 +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: 5e2d216d-0085-41a1-b368-8b137cb1997f X-Archives-Hash: 7f50f318afd7fa6c20ae7f73ac3718b1 commit: ca1565a6c2cefd1184f2cd830f4d7172fadfd84c Author: Sergei Trofimovich gentoo org> AuthorDate: Wed Jul 1 18:00:30 2020 +0000 Commit: Thomas Deutschmann gentoo org> CommitDate: Wed Jul 1 18:13:24 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca1565a6 dev-lang/spidermonkey: don't call ar directly Closes: https://bugs.gentoo.org/718616 Package-Manager: Portage-2.3.103, Repoman-2.3.23 Signed-off-by: Thomas Deutschmann gentoo.org> dev-lang/spidermonkey/spidermonkey-60.5.2_p0-r4.ebuild | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dev-lang/spidermonkey/spidermonkey-60.5.2_p0-r4.ebuild b/dev-lang/spidermonkey/spidermonkey-60.5.2_p0-r4.ebuild index 0ac7ab4cc44..663dcc95bf9 100644 --- a/dev-lang/spidermonkey/spidermonkey-60.5.2_p0-r4.ebuild +++ b/dev-lang/spidermonkey/spidermonkey-60.5.2_p0-r4.ebuild @@ -72,6 +72,8 @@ src_prepare() { src_configure() { cd "${BUILDDIR}" || die + tc-export AR RANLIB + ECONF_SOURCE="${S}/js/src" \ econf \ --disable-jemalloc \ @@ -80,6 +82,7 @@ src_configure() { --with-system-zlib \ --disable-optimize \ --with-intl-api \ + --with-toolchain-prefix="${CHOST}-" \ $(use_with system-icu) \ $(use_enable debug) \ $(use_enable jit ion) \