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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 0B5C315800A for ; Sun, 16 Jul 2023 06:18:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1CEB9E08A8; Sun, 16 Jul 2023 06:18:44 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 03830E08A8 for ; Sun, 16 Jul 2023 06:18:44 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1C24E340D33 for ; Sun, 16 Jul 2023 06:18:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C3EE1B64 for ; Sun, 16 Jul 2023 06:18:39 +0000 (UTC) From: "Haelwenn Monnier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Haelwenn Monnier" Message-ID: <1689357699.f8032a02d231d1a71643534c633a61213927f1ed.lanodan@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: app-emulation/box64/ X-VCS-Repository: repo/proj/guru X-VCS-Files: app-emulation/box64/box64-0.2.2.ebuild X-VCS-Directories: app-emulation/box64/ X-VCS-Committer: lanodan X-VCS-Committer-Name: Haelwenn Monnier X-VCS-Revision: f8032a02d231d1a71643534c633a61213927f1ed X-VCS-Branch: master Date: Sun, 16 Jul 2023 06:18:39 +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: 5e9bf5e7-872b-4874-ac0a-8187c112f24c X-Archives-Hash: 365304d0ff062b2af9f4a07dbb5f3532 commit: f8032a02d231d1a71643534c633a61213927f1ed Author: Richard-Rogalski tutanota com> AuthorDate: Fri Jul 14 17:59:51 2023 +0000 Commit: Haelwenn Monnier hacktivis me> CommitDate: Fri Jul 14 18:01:39 2023 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f8032a02 app-emulation/box64: fix wrong USE flag in conditional Had a typo in src_configure Signed-off-by: Richard-Rogalski tutanota.com> app-emulation/box64/box64-0.2.2.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app-emulation/box64/box64-0.2.2.ebuild b/app-emulation/box64/box64-0.2.2.ebuild index cab0a0b2a..bf960ad1b 100644 --- a/app-emulation/box64/box64-0.2.2.ebuild +++ b/app-emulation/box64/box64-0.2.2.ebuild @@ -22,7 +22,7 @@ BDEPEND="" src_configure() { local -a mycmakeargs=( -DNOGIT=1 - -DARM_DYNAREC=$(usex jit) + -DARM_DYNAREC=$(usex aot) ) use ppc64 && mycmakeargs+=( -DPPC64LE=1 )