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 12115158020 for ; Thu, 10 Nov 2022 16:51:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 13882E0AA5; Thu, 10 Nov 2022 16:51:06 +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 ED5E1E0AA5 for ; Thu, 10 Nov 2022 16:51:05 +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 DA537340A5D for ; Thu, 10 Nov 2022 16:51:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3A1566FE for ; Thu, 10 Nov 2022 16:51:03 +0000 (UTC) From: "Alfredo Tupone" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alfredo Tupone" Message-ID: <1668099017.66347a8c14436d17b063118cf4e6111643ffbf38.tupone@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/FP16/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/FP16/FP16-2021.03.20-r2.ebuild X-VCS-Directories: dev-libs/FP16/ X-VCS-Committer: tupone X-VCS-Committer-Name: Alfredo Tupone X-VCS-Revision: 66347a8c14436d17b063118cf4e6111643ffbf38 X-VCS-Branch: master Date: Thu, 10 Nov 2022 16:51:03 +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: 8ba08246-2874-4b5a-a497-4e918255cabc X-Archives-Hash: f101aa6485ac09acaff319acb054d52e commit: 66347a8c14436d17b063118cf4e6111643ffbf38 Author: Marek BehĂșn kernel org> AuthorDate: Thu Nov 10 10:39:00 2022 +0000 Commit: Alfredo Tupone gentoo org> CommitDate: Thu Nov 10 16:50:17 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=66347a8c dev-libs/FP16: Fix install phase for Gentoo Prefix Use the ED instead of D variable in src_install() to fix the installation when installing in Gentoo Prefix. Signed-off-by: Marek BehĂșn kernel.org> Signed-off-by: Alfredo Tupone gentoo.org> dev-libs/FP16/FP16-2021.03.20-r2.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-libs/FP16/FP16-2021.03.20-r2.ebuild b/dev-libs/FP16/FP16-2021.03.20-r2.ebuild index 1673b468cb71..c829131617f1 100644 --- a/dev-libs/FP16/FP16-2021.03.20-r2.ebuild +++ b/dev-libs/FP16/FP16-2021.03.20-r2.ebuild @@ -53,6 +53,6 @@ python_install() { src_install() { cmake_src_install - rm "${D}"/usr/include/fp16/*.py || die + rm "${ED}"/usr/include/fp16/*.py || die python_foreach_impl python_install }