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 E31C31382C5 for ; Tue, 1 Dec 2020 19:39:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 26A0BE0887; Tue, 1 Dec 2020 19:39:38 +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 C5B59E0887 for ; Tue, 1 Dec 2020 19:39:37 +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 6F4BD341190 for ; Tue, 1 Dec 2020 19:39:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AC5E238A for ; Tue, 1 Dec 2020 19:39:34 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1606851556.9b29a9e6068ecb4dad293cb1059f5da684f1bed3.mattst88@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-libs/libX11/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-libs/libX11/libX11-1.7.0.ebuild X-VCS-Directories: x11-libs/libX11/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: 9b29a9e6068ecb4dad293cb1059f5da684f1bed3 X-VCS-Branch: master Date: Tue, 1 Dec 2020 19:39:34 +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: e02ac1e6-797d-4598-bb9b-d63d5d993b64 X-Archives-Hash: 86740ec834ec6fd01cb77cc95650ec05 commit: 9b29a9e6068ecb4dad293cb1059f5da684f1bed3 Author: Matt Turner gentoo org> AuthorDate: Tue Dec 1 19:39:16 2020 +0000 Commit: Matt Turner gentoo org> CommitDate: Tue Dec 1 19:39:16 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b29a9e6 x11-libs/libX11: Fix file removal on prefix Signed-off-by: Matt Turner gentoo.org> x11-libs/libX11/libX11-1.7.0.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x11-libs/libX11/libX11-1.7.0.ebuild b/x11-libs/libX11/libX11-1.7.0.ebuild index b074ab68644..58360145833 100644 --- a/x11-libs/libX11/libX11-1.7.0.ebuild +++ b/x11-libs/libX11/libX11-1.7.0.ebuild @@ -34,5 +34,5 @@ pkg_setup() { src_install() { xorg-3_src_install - rm -Rf "${D}/usr/share/X11/locale" + rm -Rf "${ED}/usr/share/X11/locale" }