From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1667449-garchives=archives.gentoo.org@lists.gentoo.org>
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 3ED00158066
	for <garchives@archives.gentoo.org>; Wed,  4 Sep 2024 09:08:35 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 5E039E29E2;
	Wed,  4 Sep 2024 09:08:34 +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 AD40CE29E2
	for <gentoo-commits@lists.gentoo.org>; Wed,  4 Sep 2024 09:08:33 +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) server-digest SHA256)
	(No client certificate requested)
	by smtp.gentoo.org (Postfix) with ESMTPS id CA4B43430A4
	for <gentoo-commits@lists.gentoo.org>; Wed,  4 Sep 2024 09:08:32 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id 39A70BB4
	for <gentoo-commits@lists.gentoo.org>; Wed,  4 Sep 2024 09:08:31 +0000 (UTC)
From: "Sam James" <sam@gentoo.org>
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" <sam@gentoo.org>
Message-ID: <1725440887.e07db7d2104d6f88a6bcc0772a11a84f31defaaa.sam@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-block/sas2ircu/
X-VCS-Repository: repo/gentoo
X-VCS-Files: sys-block/sas2ircu/sas2ircu-20-r2.ebuild
X-VCS-Directories: sys-block/sas2ircu/
X-VCS-Committer: sam
X-VCS-Committer-Name: Sam James
X-VCS-Revision: e07db7d2104d6f88a6bcc0772a11a84f31defaaa
X-VCS-Branch: master
Date: Wed,  4 Sep 2024 09:08:31 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply
X-Archives-Salt: 3a041edb-c168-4f9b-901c-5f035a496ee5
X-Archives-Hash: 0547d3a9e25021008edbe726aa93ff42

commit:     e07db7d2104d6f88a6bcc0772a11a84f31defaaa
Author:     Jaco Kroon <jaco <AT> uls <DOT> co <DOT> za>
AuthorDate: Wed Aug 21 11:25:07 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Sep  4 09:08:07 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e07db7d2

sys-block/sas2ircu: fix check for IA32_EMULATION

Closes: https://bugs.gentoo.org/938260
Signed-off-by: Jaco Kroon <jaco <AT> uls.co.za>
Closes: https://github.com/gentoo/gentoo/pull/38234
Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-block/sas2ircu/sas2ircu-20-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-block/sas2ircu/sas2ircu-20-r2.ebuild b/sys-block/sas2ircu/sas2ircu-20-r2.ebuild
index ecd241f6ef48..5fe19539e711 100644
--- a/sys-block/sas2ircu/sas2ircu-20-r2.ebuild
+++ b/sys-block/sas2ircu/sas2ircu-20-r2.ebuild
@@ -54,7 +54,7 @@ pkg_setup() {
 	if ! use x86; then
 		# For newer kernels it needs to be enabled as well, don't know
 		# how to check for that short of running the binary.
-		local CONFIG_CHECK="CONFIG_IA32_EMULATION"
+		local CONFIG_CHECK="IA32_EMULATION"
 		check_extra_config
 	fi
 }