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 606421581FB for ; Tue, 27 Aug 2024 13:13:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8C221E29AF; Tue, 27 Aug 2024 13:13:41 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 723B3E29AF for ; Tue, 27 Aug 2024 13:13:41 +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 A24E4342F93 for ; Tue, 27 Aug 2024 13:13:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 964A31F08 for ; Tue, 27 Aug 2024 13:13:38 +0000 (UTC) From: "Florian Schmaus" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Florian Schmaus" Message-ID: <1724764329.1e8f85b582ec127e38a4d575ae7de1c1b810444b.flow@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/lttng-modules/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/lttng-modules/lttng-modules-2.13.14-r1.ebuild dev-util/lttng-modules/lttng-modules-2.13.14.ebuild X-VCS-Directories: dev-util/lttng-modules/ X-VCS-Committer: flow X-VCS-Committer-Name: Florian Schmaus X-VCS-Revision: 1e8f85b582ec127e38a4d575ae7de1c1b810444b X-VCS-Branch: master Date: Tue, 27 Aug 2024 13:13:38 +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: cf9d5ee1-c787-4109-adf0-05c4e539953a X-Archives-Hash: dd0d74347e0c70e58eca2ba5aa80df55 commit: 1e8f85b582ec127e38a4d575ae7de1c1b810444b Author: Florian Schmaus gentoo org> AuthorDate: Tue Aug 27 13:07:32 2024 +0000 Commit: Florian Schmaus gentoo org> CommitDate: Tue Aug 27 13:12:09 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e8f85b5 dev-util/lttng-modules: restore KERNELDIR=KV_OUT_DIR Setting KERNELDIR was accidentally dropped when bumping this package. Closes: https://bugs.gentoo.org/938555 Signed-off-by: Florian Schmaus gentoo.org> .../{lttng-modules-2.13.14.ebuild => lttng-modules-2.13.14-r1.ebuild} | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dev-util/lttng-modules/lttng-modules-2.13.14.ebuild b/dev-util/lttng-modules/lttng-modules-2.13.14-r1.ebuild similarity index 94% rename from dev-util/lttng-modules/lttng-modules-2.13.14.ebuild rename to dev-util/lttng-modules/lttng-modules-2.13.14-r1.ebuild index 573ff069809c..3309c26ea9f4 100644 --- a/dev-util/lttng-modules/lttng-modules-2.13.14.ebuild +++ b/dev-util/lttng-modules/lttng-modules-2.13.14-r1.ebuild @@ -28,6 +28,9 @@ CONFIG_CHECK="MODULES KALLSYMS HIGH_RES_TIMERS TRACEPOINTS MODULES_KERNEL_MIN=3.0 src_compile() { + MODULES_MAKEARGS+=( + KERNELDIR="${KV_OUT_DIR}" + ) emake "${MODULES_MAKEARGS[@]}" }