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 D106715800A for ; Wed, 16 Aug 2023 12:01:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 24D602BC020; Wed, 16 Aug 2023 12:01:24 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 10C912BC020 for ; Wed, 16 Aug 2023 12:01:24 +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 4E8DA335D8A for ; Wed, 16 Aug 2023 12:01:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7BFBDBE8 for ; Wed, 16 Aug 2023 12:01:20 +0000 (UTC) From: "Marek Szuba" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Marek Szuba" Message-ID: <1692187268.ec50d58e875f287b34e8015a9480c2d1fa470073.marecki@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-block/whdd/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-block/whdd/whdd-3.0.1-r2.ebuild X-VCS-Directories: sys-block/whdd/ X-VCS-Committer: marecki X-VCS-Committer-Name: Marek Szuba X-VCS-Revision: ec50d58e875f287b34e8015a9480c2d1fa470073 X-VCS-Branch: master Date: Wed, 16 Aug 2023 12:01:20 +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: ce08c31c-c386-467a-b22b-c1920eb38d1a X-Archives-Hash: 610a45a06c1ed0cd179317a42f86a782 commit: ec50d58e875f287b34e8015a9480c2d1fa470073 Author: Marek Szuba gentoo org> AuthorDate: Wed Aug 16 11:49:02 2023 +0000 Commit: Marek Szuba gentoo org> CommitDate: Wed Aug 16 12:01:08 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec50d58e sys-block/whdd: Fix install for Gentoo Prefix No revision bump because not only does this not change the run-time behaviour but also is effectively a no-op for non-Prefix users. Suggested-by: Yiyang Wu gmail.com> Closes: https://github.com/gentoo/gentoo/pull/29868 Signed-off-by: Marek Szuba gentoo.org> sys-block/whdd/whdd-3.0.1-r2.ebuild | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/sys-block/whdd/whdd-3.0.1-r2.ebuild b/sys-block/whdd/whdd-3.0.1-r2.ebuild index eadfaf945d92..fdadb1a4f8d4 100644 --- a/sys-block/whdd/whdd-3.0.1-r2.ebuild +++ b/sys-block/whdd/whdd-3.0.1-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -29,3 +29,8 @@ src_compile() { tc-export CC default } + +src_install() { + emake DESTDIR="${ED}" install + einstalldocs +}