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 37430138334 for ; Tue, 31 Dec 2019 23:11:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4F6AFE09EC; Tue, 31 Dec 2019 23:11:49 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 2F9A8E09EC for ; Tue, 31 Dec 2019 23:11:49 +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 7C0DF34DDE3 for ; Tue, 31 Dec 2019 23:11:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F146274 for ; Tue, 31 Dec 2019 23:11:44 +0000 (UTC) From: "Mike Gilbert" 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 Gilbert" Message-ID: <1577833878.f6ee38095605592f04aee5c351057afa0bbd8e35.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/nvme-cli/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/nvme-cli/nvme-cli-1.9-r1.ebuild sys-apps/nvme-cli/nvme-cli-1.9-r2.ebuild X-VCS-Directories: sys-apps/nvme-cli/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: f6ee38095605592f04aee5c351057afa0bbd8e35 X-VCS-Branch: master Date: Tue, 31 Dec 2019 23:11:44 +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: e3ba7cad-37d3-4b48-8dd0-81218486ed82 X-Archives-Hash: c143ee32a0e96a89c7c6834ce8ca592d commit: f6ee38095605592f04aee5c351057afa0bbd8e35 Author: Mike Gilbert gentoo org> AuthorDate: Tue Dec 31 23:11:18 2019 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Tue Dec 31 23:11:18 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f6ee3809 sys-apps/nvme-cli: trim "/system" from SYSTEMDDIR Bug: https://bugs.gentoo.org/704406 Package-Manager: Portage-2.3.84_p2, Repoman-2.3.20_p24 Signed-off-by: Mike Gilbert gentoo.org> sys-apps/nvme-cli/{nvme-cli-1.9-r1.ebuild => nvme-cli-1.9-r2.ebuild} | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sys-apps/nvme-cli/nvme-cli-1.9-r1.ebuild b/sys-apps/nvme-cli/nvme-cli-1.9-r2.ebuild similarity index 89% rename from sys-apps/nvme-cli/nvme-cli-1.9-r1.ebuild rename to sys-apps/nvme-cli/nvme-cli-1.9-r2.ebuild index 885116b4ac7..ab7d6ab7125 100644 --- a/sys-apps/nvme-cli/nvme-cli-1.9-r1.ebuild +++ b/sys-apps/nvme-cli/nvme-cli-1.9-r2.ebuild @@ -28,7 +28,8 @@ src_prepare() { src_configure() { tc-export CC export PREFIX="${EPREFIX}/usr" - export SYSTEMDDIR="$(systemd_get_systemunitdir)" + local unitdir="$(systemd_get_systemunitdir)" + export SYSTEMDDIR="${unitdir%/system}" export UDEVDIR="${EPREFIX}$(get_udevdir)" MAKEOPTS+=" LIBUUID=$(usex uuid 0 1)" }