From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1313381-garchives=archives.gentoo.org@lists.gentoo.org> 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 AD514158F57 for <garchives@archives.gentoo.org>; Mon, 16 Aug 2021 20:48:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5F566E0FE9; Mon, 16 Aug 2021 19:15:46 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 419A9E0FE9 for <gentoo-commits@lists.gentoo.org>; Mon, 16 Aug 2021 19:15:46 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 281EB347377 for <gentoo-commits@lists.gentoo.org>; Mon, 16 Aug 2021 19:15:45 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7EB9A858 for <gentoo-commits@lists.gentoo.org>; Mon, 16 Aug 2021 19:15:43 +0000 (UTC) From: "Conrad Kostecki" <conikost@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, "Conrad Kostecki" <conikost@gentoo.org> Message-ID: <1629141336.eecd3bfcaabc16c9e691299200fc6319e991f790.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-block/arcconf/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-block/arcconf/arcconf-3.07.23971.ebuild X-VCS-Directories: sys-block/arcconf/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: eecd3bfcaabc16c9e691299200fc6319e991f790 X-VCS-Branch: master Date: Mon, 16 Aug 2021 19:15:43 +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: 0e64c97e-432a-40dd-9f89-e3f606413e95 X-Archives-Hash: 89b4d3d9defe285b60d1e57be3328a10 commit: eecd3bfcaabc16c9e691299200fc6319e991f790 Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org> AuthorDate: Mon Aug 16 19:15:12 2021 +0000 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org> CommitDate: Mon Aug 16 19:15:36 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eecd3bfc sys-block/arcconf: add check for vsyscall VSYSCALL is needed, as otherwise arcconf will directly segfault upon calling. Closes: https://bugs.gentoo.org/802834 Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org> sys-block/arcconf/arcconf-3.07.23971.ebuild | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/sys-block/arcconf/arcconf-3.07.23971.ebuild b/sys-block/arcconf/arcconf-3.07.23971.ebuild index f64c4f84d87..7d1a6ad982b 100644 --- a/sys-block/arcconf/arcconf-3.07.23971.ebuild +++ b/sys-block/arcconf/arcconf-3.07.23971.ebuild @@ -24,8 +24,9 @@ QA_PREBUILT="usr/bin/arcconf" pkg_setup() { # CONFIG_HARDENED_USERCOPY_PAGESPAN makes ARCCONF segault - if linux-info_get_any_version && linux_config_src_exists ; then - CONFIG_CHECK="!HARDENED_USERCOPY_PAGESPAN" + # LEGACY_VSYSCALL_NONE makes ARCCONF segaultmakes ARCCONF segault + if linux-info_get_any_version && linux_config_src_exists; then + CONFIG_CHECK="!HARDENED_USERCOPY_PAGESPAN !LEGACY_VSYSCALL_NONE" check_extra_config fi }