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 2CEC5138239 for ; Mon, 29 Mar 2021 20:59:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 31CF0E085A; Mon, 29 Mar 2021 20:59:40 +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 1AB8AE085A for ; Mon, 29 Mar 2021 20:59:40 +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 09B0D340D24 for ; Mon, 29 Mar 2021 20:59:39 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 62CB047 for ; Mon, 29 Mar 2021 20:59:37 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1617048888.d7b186250b9c9173907974603885d48b00a65576.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/mono/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lang/mono/mono-6.12.0.122.ebuild X-VCS-Directories: dev-lang/mono/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: d7b186250b9c9173907974603885d48b00a65576 X-VCS-Branch: master Date: Mon, 29 Mar 2021 20:59:37 +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: 93301fd9-4883-42df-922b-67d7d728c209 X-Archives-Hash: b97cfae3e718f36e4defe2082762f5dd commit: d7b186250b9c9173907974603885d48b00a65576 Author: Sam James gentoo org> AuthorDate: Mon Mar 29 19:21:07 2021 +0000 Commit: Sam James gentoo org> CommitDate: Mon Mar 29 20:14:48 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d7b18625 dev-lang/mono: fix multilib non-native install by disabling AOT Closes: https://bugs.gentoo.org/779025 Signed-off-by: Sam James gentoo.org> dev-lang/mono/mono-6.12.0.122.ebuild | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/dev-lang/mono/mono-6.12.0.122.ebuild b/dev-lang/mono/mono-6.12.0.122.ebuild index 2e2781d0640..5c928b7089e 100644 --- a/dev-lang/mono/mono-6.12.0.122.ebuild +++ b/dev-lang/mono/mono-6.12.0.122.ebuild @@ -90,6 +90,14 @@ multilib_src_configure() { $(use_enable nls) ) + # Workaround(?) for bug #779025 + # May be able to do a real fix by adjusting path used? + if multilib_is_native_abi ; then + myeconfargs+=( --enable-system-aot ) + else + myeconfargs+=( --disable-system-aot ) + fi + econf "${myeconfargs[@]}" }