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 A117B138334 for ; Mon, 11 Mar 2019 09:39:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9DEFDE0BE3; Mon, 11 Mar 2019 09:39:15 +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 76B53E0BE3 for ; Mon, 11 Mar 2019 09:39:15 +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 301B533BDCC for ; Mon, 11 Mar 2019 09:39:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9BB65565 for ; Mon, 11 Mar 2019 09:39:12 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1552297145.c9525e73f784cb12512b0ff50a73096519a9d60b.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/nspr/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/nspr/nspr-4.20.ebuild X-VCS-Directories: dev-libs/nspr/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: c9525e73f784cb12512b0ff50a73096519a9d60b X-VCS-Branch: master Date: Mon, 11 Mar 2019 09:39:12 +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: 7f39c29b-396d-4416-b791-b0110c3987ae X-Archives-Hash: c489c9df1ddfaeaa7cd5dfe51ed19fa0 commit: c9525e73f784cb12512b0ff50a73096519a9d60b Author: Lars Wendler gentoo org> AuthorDate: Mon Mar 11 09:39:05 2019 +0000 Commit: Lars Wendler gentoo org> CommitDate: Mon Mar 11 09:39:05 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c9525e73 dev-libs/nspr: Minor ebuild cleanups. Package-Manager: Portage-2.3.62, Repoman-2.3.12 Signed-off-by: Lars Wendler gentoo.org> dev-libs/nspr/nspr-4.20.ebuild | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/dev-libs/nspr/nspr-4.20.ebuild b/dev-libs/nspr/nspr-4.20.ebuild index ea8f3402c40..f20d29ee341 100644 --- a/dev-libs/nspr/nspr-4.20.ebuild +++ b/dev-libs/nspr/nspr-4.20.ebuild @@ -3,7 +3,7 @@ EAPI=7 -inherit autotools eutils multilib toolchain-funcs multilib-minimal +inherit autotools toolchain-funcs multilib-minimal MIN_PV="$(ver_cut 2)" @@ -103,16 +103,16 @@ multilib_src_install() { emake DESTDIR="${D}" install einfo "removing static libraries as upstream has requested!" - rm "${ED%/}"/usr/$(get_libdir)/*.a || die "failed to remove static libraries." + rm "${ED}"/usr/$(get_libdir)/*.a || die "failed to remove static libraries." # install nspr-config dobin config/nspr-config # Remove stupid files in /usr/bin - rm "${ED%/}"/usr/bin/prerr.properties || die + rm "${ED}"/usr/bin/prerr.properties || die # This is used only to generate prerr.c and prerr.h at build time. # No other projects use it, and we don't want to depend on perl. # Talked to upstream and they agreed w/punting. - rm "${ED%/}"/usr/bin/compile-et.pl || die + rm "${ED}"/usr/bin/compile-et.pl || die }