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 18AD3158009 for ; Mon, 19 Jun 2023 19:34:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4A82FE0891; Mon, 19 Jun 2023 19:34:29 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 pigeon.gentoo.org (Postfix) with ESMTPS id 3254DE0891 for ; Mon, 19 Jun 2023 19:34:29 +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 BB48C340FAC for ; Mon, 19 Jun 2023 19:34:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EDF3BA80 for ; Mon, 19 Jun 2023 19:34:24 +0000 (UTC) From: "Nick Sarnie" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Nick Sarnie" Message-ID: <1687203225.429ab1a39726f2465894e31e0eeb3dc2dc372e38.sarnex@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/vendor-reset/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emulation/vendor-reset/vendor-reset-0.1.1_pre20221205-r1.ebuild app-emulation/vendor-reset/vendor-reset-9999.ebuild X-VCS-Directories: app-emulation/vendor-reset/ X-VCS-Committer: sarnex X-VCS-Committer-Name: Nick Sarnie X-VCS-Revision: 429ab1a39726f2465894e31e0eeb3dc2dc372e38 X-VCS-Branch: master Date: Mon, 19 Jun 2023 19:34:24 +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: fd7b41a7-d44c-41a0-ad10-f2ad7da1f00f X-Archives-Hash: 6cdbb8ae203790fb7b2e9e7dd5d24612 commit: 429ab1a39726f2465894e31e0eeb3dc2dc372e38 Author: Nick Sarnie gentoo org> AuthorDate: Mon Jun 19 19:33:45 2023 +0000 Commit: Nick Sarnie gentoo org> CommitDate: Mon Jun 19 19:33:45 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=429ab1a3 app-emulation/vendor-reset: Fix porting mistakes Thanks ionen Signed-off-by: Nick Sarnie gentoo.org> app-emulation/vendor-reset/vendor-reset-0.1.1_pre20221205-r1.ebuild | 3 ++- app-emulation/vendor-reset/vendor-reset-9999.ebuild | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/app-emulation/vendor-reset/vendor-reset-0.1.1_pre20221205-r1.ebuild b/app-emulation/vendor-reset/vendor-reset-0.1.1_pre20221205-r1.ebuild index 81c03b66a2bf..76b16c2eb09d 100644 --- a/app-emulation/vendor-reset/vendor-reset-0.1.1_pre20221205-r1.ebuild +++ b/app-emulation/vendor-reset/vendor-reset-0.1.1_pre20221205-r1.ebuild @@ -27,7 +27,8 @@ S="${WORKDIR}/${PN}-${EGIT_COMMIT}" CONFIG_CHECK="FTRACE KPROBES PCI_QUIRKS KALLSYMS FUNCTION_TRACER" src_compile() { - local modlist=( vendor-reset=extra ) + local modlist=( vendor-reset ) + local modargs=( KDIR="${KV_OUT_DIR}" ) linux-mod-r1_src_compile } diff --git a/app-emulation/vendor-reset/vendor-reset-9999.ebuild b/app-emulation/vendor-reset/vendor-reset-9999.ebuild index c02b2add3f0b..1249682016dd 100644 --- a/app-emulation/vendor-reset/vendor-reset-9999.ebuild +++ b/app-emulation/vendor-reset/vendor-reset-9999.ebuild @@ -26,7 +26,8 @@ RDEPEND="${DEPEND}" CONFIG_CHECK="FTRACE KPROBES PCI_QUIRKS KALLSYMS FUNCTION_TRACER" src_compile() { - local modlist=( vendor-reset=extra ) + local modlist=( vendor-reset ) + local modargs=( KDIR="${KV_OUT_DIR}" ) linux-mod-r1_src_compile }