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 2332C1382C5 for ; Thu, 25 Mar 2021 19:08:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 781BBE041F; Thu, 25 Mar 2021 19:08:33 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 60FE5E041F for ; Thu, 25 Mar 2021 19:08:33 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 BCDA7340D2B for ; Thu, 25 Mar 2021 19:08:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5A241630 for ; Thu, 25 Mar 2021 19:08:30 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1616699302.483ba0aca612dbb21a41324551ab696d2a94c13c.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/spandsp/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/spandsp/spandsp-0.0.6.ebuild X-VCS-Directories: media-libs/spandsp/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 483ba0aca612dbb21a41324551ab696d2a94c13c X-VCS-Branch: master Date: Thu, 25 Mar 2021 19:08:30 +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: 43cf68ed-effc-4473-a9cc-3e8fa7467fa2 X-Archives-Hash: a5274feed9f03ac1b7078cbbc02929db commit: 483ba0aca612dbb21a41324551ab696d2a94c13c Author: Sam James gentoo org> AuthorDate: Thu Mar 25 19:08:10 2021 +0000 Commit: Sam James gentoo org> CommitDate: Thu Mar 25 19:08:22 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=483ba0ac media-libs/spandsp: fix removal of .la Closes: https://bugs.gentoo.org/716260 Signed-off-by: Sam James gentoo.org> media-libs/spandsp/spandsp-0.0.6.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/media-libs/spandsp/spandsp-0.0.6.ebuild b/media-libs/spandsp/spandsp-0.0.6.ebuild index 26ce3e472a7..f5989411a1b 100644 --- a/media-libs/spandsp/spandsp-0.0.6.ebuild +++ b/media-libs/spandsp/spandsp-0.0.6.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI="5" @@ -57,7 +57,7 @@ src_install() { if ! use static-libs; then # remove useless la file when not installing static lib - rm "${D}"/usr/$(get_libdir)/lib${PN}.la || die "rm failed" + find "${ED}" -name '*.la' -delete || die fi if use doc; then