Gentoo Archives: gentoo-commits

From: Thomas Deutschmann <whissi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/spidermonkey/
Date: Thu, 02 Jul 2020 15:07:21
Message-Id: 1593702359.ac3c9c814c6007da265b0d7c30350f76fff07d29.whissi@gentoo
1 commit: ac3c9c814c6007da265b0d7c30350f76fff07d29
2 Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jul 2 15:05:45 2020 +0000
4 Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
5 CommitDate: Thu Jul 2 15:05:59 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ac3c9c81
7
8 dev-lang/spidermonkey: fix cross-compile
9
10 Instead of the standard --build= and --host=, Mozilla
11 uses --host instead of --build, and --target intstead
12 of --host.
13
14 Closes: https://bugs.gentoo.org/717314
15 Package-Manager: Portage-2.3.103, Repoman-2.3.23
16 Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
17
18 dev-lang/spidermonkey/spidermonkey-68.10.0.ebuild | 1 +
19 1 file changed, 1 insertion(+)
20
21 diff --git a/dev-lang/spidermonkey/spidermonkey-68.10.0.ebuild b/dev-lang/spidermonkey/spidermonkey-68.10.0.ebuild
22 index 81641728764..bc95dc96070 100644
23 --- a/dev-lang/spidermonkey/spidermonkey-68.10.0.ebuild
24 +++ b/dev-lang/spidermonkey/spidermonkey-68.10.0.ebuild
25 @@ -124,6 +124,7 @@ src_configure() {
26 # and other minor arches
27 ECONF_SOURCE="${S}" \
28 econf \
29 + --host="${CBUILD:-${CHOST}}" \
30 --target="${CHOST}" \
31 --disable-jemalloc \
32 --disable-optimize \