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 E8FE0139694 for ; Tue, 4 Apr 2017 09:04:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3563C21C075; Tue, 4 Apr 2017 09:04:17 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1765A21C075 for ; Tue, 4 Apr 2017 09:04:17 +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 1CE6F33E4AD for ; Tue, 4 Apr 2017 09:04:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 86B6773D2 for ; Tue, 4 Apr 2017 09:04:14 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1491296646.354aa61d1ef3b2539e7971ec4b5b0fde3e59a957.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libzip/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libzip/libzip-1.2.0.ebuild X-VCS-Directories: dev-libs/libzip/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 354aa61d1ef3b2539e7971ec4b5b0fde3e59a957 X-VCS-Branch: master Date: Tue, 4 Apr 2017 09:04:14 +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-Archives-Salt: 0c17b7d4-af76-49e0-9f18-0e2053a959f6 X-Archives-Hash: 801a519f60014829cdeac3f169f891fc commit: 354aa61d1ef3b2539e7971ec4b5b0fde3e59a957 Author: Andreas Sturmlechner gentoo org> AuthorDate: Tue Apr 4 09:00:49 2017 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Tue Apr 4 09:04:06 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=354aa61d dev-libs/libzip: Fix lib path to remove Reported-by: Dmitry Derevyanko gmail.com> Gentoo-bug: 614598 Package-Manager: Portage-2.3.3, Repoman-2.3.1 dev-libs/libzip/libzip-1.2.0.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-libs/libzip/libzip-1.2.0.ebuild b/dev-libs/libzip/libzip-1.2.0.ebuild index f141055789a..e908a010da9 100644 --- a/dev-libs/libzip/libzip-1.2.0.ebuild +++ b/dev-libs/libzip/libzip-1.2.0.ebuild @@ -34,6 +34,6 @@ src_prepare() { src_install() { default - use static-libs || rm "${ED%/}"/usr/lib64/libzip.a || die + use static-libs || rm "${ED%/}"/usr/$(get_libdir)/libzip.a || die find "${D}" -name '*.la' -delete || die }