Gentoo Archives: gentoo-commits

From: Thomas Deutschmann <whissi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/librelp/
Date: Sat, 04 Aug 2018 21:30:39
Message-Id: 1533418223.bbab16dd0764dbb221768f939006975cd802e05d.whissi@gentoo
1 commit: bbab16dd0764dbb221768f939006975cd802e05d
2 Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
3 AuthorDate: Sat Aug 4 21:29:19 2018 +0000
4 Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
5 CommitDate: Sat Aug 4 21:30:23 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bbab16dd
7
8 dev-libs/librelp: fix USE=-static-libs
9
10 Closes: https://bugs.gentoo.org/662806
11 Package-Manager: Portage-2.3.44, Repoman-2.3.10
12
13 dev-libs/librelp/librelp-1.2.17.ebuild | 2 +-
14 1 file changed, 1 insertion(+), 1 deletion(-)
15
16 diff --git a/dev-libs/librelp/librelp-1.2.17.ebuild b/dev-libs/librelp/librelp-1.2.17.ebuild
17 index ffce4fe9ec9..ccdcf011fa2 100644
18 --- a/dev-libs/librelp/librelp-1.2.17.ebuild
19 +++ b/dev-libs/librelp/librelp-1.2.17.ebuild
20 @@ -70,6 +70,6 @@ src_install() {
21 default
22
23 if ! use static-libs; then
24 - find "${ED}"usr/lib* -name '*.la' -delete || die
25 + find "${ED%/}"/usr/lib* -name '*.la' -delete || die
26 fi
27 }