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 533C8138359 for ; Thu, 2 Jul 2020 15:07:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 79E83E0845; Thu, 2 Jul 2020 15:07:20 +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 5C226E0845 for ; Thu, 2 Jul 2020 15:07:20 +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 47BE034F149 for ; Thu, 2 Jul 2020 15:07:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EB4C2233 for ; Thu, 2 Jul 2020 15:07:17 +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: <1593702359.ac3c9c814c6007da265b0d7c30350f76fff07d29.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-68.10.0.ebuild X-VCS-Directories: dev-lang/spidermonkey/ X-VCS-Committer: whissi X-VCS-Committer-Name: Thomas Deutschmann X-VCS-Revision: ac3c9c814c6007da265b0d7c30350f76fff07d29 X-VCS-Branch: master Date: Thu, 2 Jul 2020 15:07:17 +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: 7beae86f-f0e0-4ed8-9e59-b2a0d92b27a4 X-Archives-Hash: 13dfb9174e11545b3e81dd0f4b12b184 commit: ac3c9c814c6007da265b0d7c30350f76fff07d29 Author: Thomas Deutschmann gentoo org> AuthorDate: Thu Jul 2 15:05:45 2020 +0000 Commit: Thomas Deutschmann gentoo org> CommitDate: Thu Jul 2 15:05:59 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ac3c9c81 dev-lang/spidermonkey: fix cross-compile Instead of the standard --build= and --host=, Mozilla uses --host instead of --build, and --target intstead of --host. Closes: https://bugs.gentoo.org/717314 Package-Manager: Portage-2.3.103, Repoman-2.3.23 Signed-off-by: Thomas Deutschmann gentoo.org> dev-lang/spidermonkey/spidermonkey-68.10.0.ebuild | 1 + 1 file changed, 1 insertion(+) diff --git a/dev-lang/spidermonkey/spidermonkey-68.10.0.ebuild b/dev-lang/spidermonkey/spidermonkey-68.10.0.ebuild index 81641728764..bc95dc96070 100644 --- a/dev-lang/spidermonkey/spidermonkey-68.10.0.ebuild +++ b/dev-lang/spidermonkey/spidermonkey-68.10.0.ebuild @@ -124,6 +124,7 @@ src_configure() { # and other minor arches ECONF_SOURCE="${S}" \ econf \ + --host="${CBUILD:-${CHOST}}" \ --target="${CHOST}" \ --disable-jemalloc \ --disable-optimize \