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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 49527158009 for ; Mon, 26 Jun 2023 23:13:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6CACBE07DB; Mon, 26 Jun 2023 23:13:09 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 50474E07DB for ; Mon, 26 Jun 2023 23:13:09 +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 461D4340DD9 for ; Mon, 26 Jun 2023 23:13:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8A9C97C6 for ; Mon, 26 Jun 2023 23:13:06 +0000 (UTC) From: "Mike Pagano" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Pagano" Message-ID: <1687820936.633b0b127be3dc494d7f7897b937e0eb5e6e4125.mpagano@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.10.ebuild X-VCS-Directories: dev-util/lttng-modules/ X-VCS-Committer: mpagano X-VCS-Committer-Name: Mike Pagano X-VCS-Revision: 633b0b127be3dc494d7f7897b937e0eb5e6e4125 X-VCS-Branch: master Date: Mon, 26 Jun 2023 23:13:06 +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: 9ae82a23-4bff-44f6-bff8-295247589213 X-Archives-Hash: 837b30919ac480108c74a41d194abd0b commit: 633b0b127be3dc494d7f7897b937e0eb5e6e4125 Author: Mike Pagano gentoo org> AuthorDate: Mon Jun 26 23:08:56 2023 +0000 Commit: Mike Pagano gentoo org> CommitDate: Mon Jun 26 23:08:56 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=633b0b12 dev-util/lttng-modules: Fix Kernel build directory setting Closes: https://bugs.gentoo.org/909171 Signed-off-by: Mike Pagano gentoo.org> dev-util/lttng-modules/lttng-modules-2.13.10.ebuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dev-util/lttng-modules/lttng-modules-2.13.10.ebuild b/dev-util/lttng-modules/lttng-modules-2.13.10.ebuild index 5716e736134f..574b4186cf7e 100644 --- a/dev-util/lttng-modules/lttng-modules-2.13.10.ebuild +++ b/dev-util/lttng-modules/lttng-modules-2.13.10.ebuild @@ -90,6 +90,7 @@ src_compile() { lttng-probe-sched=misc:"${S}":src/probes lttng-lib-ring-buffer=misc:"${S}":src/lib) - local modargs=( NIH_SOURCE="${KV_OUT_DIR}" ) + local modargs=( KERNELDIR="/lib/modules/${KV_FULL}/build" ) + linux-mod-r1_src_compile }