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 DDDC4138334 for ; Fri, 1 Nov 2019 19:43:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 26661E07B3; Fri, 1 Nov 2019 19:43:17 +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 0D4DEE07B3 for ; Fri, 1 Nov 2019 19:43:17 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 3A5C934C683 for ; Fri, 1 Nov 2019 19:43:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E5D3A779 for ; Fri, 1 Nov 2019 19:43:14 +0000 (UTC) From: "Ben Kohler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ben Kohler" Message-ID: <1572637382.bba175a2ce817e84cd02575961f78f60c6627227.bkohler@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-wireless/iwd/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-wireless/iwd/iwd-9999.ebuild X-VCS-Directories: net-wireless/iwd/ X-VCS-Committer: bkohler X-VCS-Committer-Name: Ben Kohler X-VCS-Revision: bba175a2ce817e84cd02575961f78f60c6627227 X-VCS-Branch: master Date: Fri, 1 Nov 2019 19:43:14 +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: ee7cd793-4be7-4e8a-b24a-1280ab16e653 X-Archives-Hash: 836c3f857fe8c7979a67aed658cf7a4a commit: bba175a2ce817e84cd02575961f78f60c6627227 Author: Ben Kohler gentoo org> AuthorDate: Fri Nov 1 19:42:39 2019 +0000 Commit: Ben Kohler gentoo org> CommitDate: Fri Nov 1 19:43:02 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bba175a2 net-wireless/iwd: stop using private systemd.eclass function Just hardcode the modules-load.d dir instead of abusing a private eclass function. Closes: https://bugs.gentoo.org/699042 Package-Manager: Portage-2.3.78, Repoman-2.3.17 Signed-off-by: Ben Kohler gentoo.org> net-wireless/iwd/iwd-9999.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net-wireless/iwd/iwd-9999.ebuild b/net-wireless/iwd/iwd-9999.ebuild index 3a599ccce34..bef22a92049 100644 --- a/net-wireless/iwd/iwd-9999.ebuild +++ b/net-wireless/iwd/iwd-9999.ebuild @@ -130,7 +130,7 @@ src_configure() { $(use_enable wired) \ --enable-systemd-service \ --with-systemd-unitdir="$(systemd_get_systemunitdir)" \ - --with-systemd-modloaddir=$(_systemd_get_dir modulesloaddir /usr/lib/modules-load.d) \ + --with-systemd-modloaddir="${EPREFIX}/usr/lib/modules-load.d" \ --with-systemd-networkdir="$(systemd_get_utildir)/network" ) [[ ${PV} == *9999* ]] || myeconfargs+=(--enable-external-ell)