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 A284B13835A for ; Fri, 26 Mar 2021 14:52:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A40B3E0844; Fri, 26 Mar 2021 14:52:20 +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 8C5EBE0844 for ; Fri, 26 Mar 2021 14:52:20 +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 2EF28340D43 for ; Fri, 26 Mar 2021 14:52:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 916935CF for ; Fri, 26 Mar 2021 14:52:17 +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: <1616770328.0ffdb1f61c6d12105a6aece6f4eae196f2d74359.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/openglide/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/openglide/openglide-0.09_rc9_p20191120.ebuild X-VCS-Directories: media-libs/openglide/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 0ffdb1f61c6d12105a6aece6f4eae196f2d74359 X-VCS-Branch: master Date: Fri, 26 Mar 2021 14:52:17 +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: 136a608d-4e05-4f84-b921-99f6b479887e X-Archives-Hash: 90c1dd87ed012183f8992d8ac9d6d504 commit: 0ffdb1f61c6d12105a6aece6f4eae196f2d74359 Author: Sam James gentoo org> AuthorDate: Fri Mar 26 14:51:53 2021 +0000 Commit: Sam James gentoo org> CommitDate: Fri Mar 26 14:52:08 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ffdb1f6 media-libs/openglide: fix installation with slibtool Closes: https://bugs.gentoo.org/778266 Signed-off-by: Sam James gentoo.org> media-libs/openglide/openglide-0.09_rc9_p20191120.ebuild | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/media-libs/openglide/openglide-0.09_rc9_p20191120.ebuild b/media-libs/openglide/openglide-0.09_rc9_p20191120.ebuild index 967005ed1c3..c51f646d46f 100644 --- a/media-libs/openglide/openglide-0.09_rc9_p20191120.ebuild +++ b/media-libs/openglide/openglide-0.09_rc9_p20191120.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -56,6 +56,9 @@ multilib_src_install_all() { newexe platform/dosbox/glide2x.ovl glide2x-dosbox.ovl newexe platform/dosemu/glide2x.ovl glide2x-dosemu.ovl - rm "${ED}"/usr/*/*.la || die + # Drop the libtool file *if* it exists + # bug #778266 + find "${ED}" -name '*.la' -delete || die + einstalldocs }