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 50EBE158087 for ; Sat, 25 Dec 2021 23:20:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 388642BC031; Sat, 25 Dec 2021 23:20:26 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 126CA2BC031 for ; Sat, 25 Dec 2021 23:20:26 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 smtp.gentoo.org (Postfix) with ESMTPS id 7C7E7343097 for ; Sat, 25 Dec 2021 23:20:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8E2CC26A for ; Sat, 25 Dec 2021 23:20:19 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1640474409.cf5f5892d6941610d3997923f5746c67984e7822.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libuev/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libuev/libuev-2.4.0.ebuild X-VCS-Directories: dev-libs/libuev/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: cf5f5892d6941610d3997923f5746c67984e7822 X-VCS-Branch: master Date: Sat, 25 Dec 2021 23:20:19 +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: 69965656-2e19-42c4-a3c0-8a8bd5b7c8c0 X-Archives-Hash: 6264006a33388c696aa4ecbb25a0f182 commit: cf5f5892d6941610d3997923f5746c67984e7822 Author: Sam James gentoo org> AuthorDate: Sat Dec 25 22:36:04 2021 +0000 Commit: Sam James gentoo org> CommitDate: Sat Dec 25 23:20:09 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf5f5892 dev-libs/libuev: use ${ED} Signed-off-by: Sam James gentoo.org> dev-libs/libuev/libuev-2.4.0.ebuild | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/dev-libs/libuev/libuev-2.4.0.ebuild b/dev-libs/libuev/libuev-2.4.0.ebuild index d82689f38da8..b181b2fb8849 100644 --- a/dev-libs/libuev/libuev-2.4.0.ebuild +++ b/dev-libs/libuev/libuev-2.4.0.ebuild @@ -18,6 +18,7 @@ src_configure() { src_install() { default - find "${D}" -name '*.la' -delete || die - rm "${D}/usr/share/doc/${PF}/LICENSE" || die + + find "${ED}" -name '*.la' -delete || die + rm "${ED}"/usr/share/doc/${PF}/LICENSE || die }