Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-libs/libX11/
Date: Tue, 01 Dec 2020 19:39:38
Message-Id: 1606851556.9b29a9e6068ecb4dad293cb1059f5da684f1bed3.mattst88@gentoo
1 commit: 9b29a9e6068ecb4dad293cb1059f5da684f1bed3
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Tue Dec 1 19:39:16 2020 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Tue Dec 1 19:39:16 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b29a9e6
7
8 x11-libs/libX11: Fix file removal on prefix
9
10 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
11
12 x11-libs/libX11/libX11-1.7.0.ebuild | 2 +-
13 1 file changed, 1 insertion(+), 1 deletion(-)
14
15 diff --git a/x11-libs/libX11/libX11-1.7.0.ebuild b/x11-libs/libX11/libX11-1.7.0.ebuild
16 index b074ab68644..58360145833 100644
17 --- a/x11-libs/libX11/libX11-1.7.0.ebuild
18 +++ b/x11-libs/libX11/libX11-1.7.0.ebuild
19 @@ -34,5 +34,5 @@ pkg_setup() {
20
21 src_install() {
22 xorg-3_src_install
23 - rm -Rf "${D}/usr/share/X11/locale"
24 + rm -Rf "${ED}/usr/share/X11/locale"
25 }