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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 4F25D138334 for ; Mon, 23 Sep 2019 20:44:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6A9EBE094A; Mon, 23 Sep 2019 20:44:50 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 4E891E094A for ; Mon, 23 Sep 2019 20:44:50 +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 CBD8134B460 for ; Mon, 23 Sep 2019 20:44:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 037A1764 for ; Mon, 23 Sep 2019 20:44:46 +0000 (UTC) From: "Patrick McLean" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrick McLean" Message-ID: <1569271466.99344b4305b897f0ac79176b60b9907281619451.chutzpah@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/AQtion/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/AQtion/AQtion-2.2.7.ebuild X-VCS-Directories: net-misc/AQtion/ X-VCS-Committer: chutzpah X-VCS-Committer-Name: Patrick McLean X-VCS-Revision: 99344b4305b897f0ac79176b60b9907281619451 X-VCS-Branch: master Date: Mon, 23 Sep 2019 20:44:46 +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: fc892f26-4397-4f49-a1f5-79cf10750704 X-Archives-Hash: 13c477276b7607b620c5087ac4314ad7 commit: 99344b4305b897f0ac79176b60b9907281619451 Author: Patrick McLean sony com> AuthorDate: Mon Sep 23 20:44:26 2019 +0000 Commit: Patrick McLean gentoo org> CommitDate: Mon Sep 23 20:44:26 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=99344b43 net-misc/AQtion: Fix build against a non-running kernel Copyright: Sony Interactive Entertainment Inc. Package-Manager: Portage-2.3.76, Repoman-2.3.17 Signed-off-by: Patrick McLean gentoo.org> net-misc/AQtion/AQtion-2.2.7.ebuild | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/net-misc/AQtion/AQtion-2.2.7.ebuild b/net-misc/AQtion/AQtion-2.2.7.ebuild index 157bb239def..052ff5de6cb 100644 --- a/net-misc/AQtion/AQtion-2.2.7.ebuild +++ b/net-misc/AQtion/AQtion-2.2.7.ebuild @@ -43,7 +43,11 @@ src_prepare() { fi } +src_compile() { + KDIR="${KERNEL_DIR}" linux-mod_src_compile +} + src_install() { - linux-mod_src_install + KDIR="${KERNEL_DIR}" linux-mod_src_install dodoc "${DOCS[@]}" }