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 A0802138334 for ; Wed, 12 Jun 2019 08:35:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D1EB3E08CD; Wed, 12 Jun 2019 08:35:11 +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 971D7E08CD for ; Wed, 12 Jun 2019 08:35:11 +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 22333345EFE for ; Wed, 12 Jun 2019 08:35:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6E5285BD for ; Wed, 12 Jun 2019 08:35:07 +0000 (UTC) From: "Michael Haubenwallner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Haubenwallner" Message-ID: <1560328478.ad4a5f5695f9d93e1dceeae7cc943b916c9ab61e.haubi@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-arch/xz-utils/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-arch/xz-utils/xz-utils-5.2.4-r3.ebuild app-arch/xz-utils/xz-utils-9999.ebuild X-VCS-Directories: app-arch/xz-utils/ X-VCS-Committer: haubi X-VCS-Committer-Name: Michael Haubenwallner X-VCS-Revision: ad4a5f5695f9d93e1dceeae7cc943b916c9ab61e X-VCS-Branch: master Date: Wed, 12 Jun 2019 08:35:07 +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: 5127e4e3-41ed-4442-85a5-219c201270c9 X-Archives-Hash: 006c3a4e77125dcb337dc009e0a4e290 commit: ad4a5f5695f9d93e1dceeae7cc943b916c9ab61e Author: Michael Haubenwallner gentoo org> AuthorDate: Wed Jun 12 08:32:44 2019 +0000 Commit: Michael Haubenwallner gentoo org> CommitDate: Wed Jun 12 08:34:38 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ad4a5f56 app-arch/xz-utils: stop removing *.a files Upon configure --disable-static, libtool does not create the static library at all, as long as it is able to create the shared library. And the *.a file name may be used with shared libraries too (*.dll.a on Cygwin), so we may end up without any library when removing *.a. Closes: https://bugs.gentoo.org/687904 Package-Manager: Portage-2.3.66, Repoman-2.3.11 Signed-off-by: Michael Haubenwallner gentoo.org> app-arch/xz-utils/{xz-utils-9999.ebuild => xz-utils-5.2.4-r3.ebuild} | 2 +- app-arch/xz-utils/xz-utils-9999.ebuild | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app-arch/xz-utils/xz-utils-9999.ebuild b/app-arch/xz-utils/xz-utils-5.2.4-r3.ebuild similarity index 97% copy from app-arch/xz-utils/xz-utils-9999.ebuild copy to app-arch/xz-utils/xz-utils-5.2.4-r3.ebuild index 002f769a1c1..249d0a2b31e 100644 --- a/app-arch/xz-utils/xz-utils-9999.ebuild +++ b/app-arch/xz-utils/xz-utils-5.2.4-r3.ebuild @@ -78,7 +78,7 @@ multilib_src_install() { } multilib_src_install_all() { - find "${ED}" \( -name '*.a' -o -name '*.la' \) -delete || die + find "${ED}" -name '*.la' -delete || die rm "${ED%/}"/usr/share/doc/${PF}/COPYING* || die } diff --git a/app-arch/xz-utils/xz-utils-9999.ebuild b/app-arch/xz-utils/xz-utils-9999.ebuild index 002f769a1c1..249d0a2b31e 100644 --- a/app-arch/xz-utils/xz-utils-9999.ebuild +++ b/app-arch/xz-utils/xz-utils-9999.ebuild @@ -78,7 +78,7 @@ multilib_src_install() { } multilib_src_install_all() { - find "${ED}" \( -name '*.a' -o -name '*.la' \) -delete || die + find "${ED}" -name '*.la' -delete || die rm "${ED%/}"/usr/share/doc/${PF}/COPYING* || die }