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 E99CD139694 for ; Sat, 18 Mar 2017 10:27:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 474C921C075; Sat, 18 Mar 2017 10:27:51 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 1B03D21C075 for ; Sat, 18 Mar 2017 10:27:51 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2DAB4340DF9 for ; Sat, 18 Mar 2017 10:27:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4C4BC6C5B for ; Sat, 18 Mar 2017 10:27:48 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1489832797.c81bca6531e9c72287162fda8b22a827d7384418.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-libs/motif/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-libs/motif/motif-2.3.6-r1.ebuild X-VCS-Directories: x11-libs/motif/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: c81bca6531e9c72287162fda8b22a827d7384418 X-VCS-Branch: master Date: Sat, 18 Mar 2017 10:27:48 +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: b43345f9-9fa0-436f-8938-c37f532bb1e6 X-Archives-Hash: 018bfd3d037365b2f03dc3d6aad68ae8 commit: c81bca6531e9c72287162fda8b22a827d7384418 Author: Ulrich Müller gentoo org> AuthorDate: Sat Mar 18 10:26:37 2017 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Sat Mar 18 10:26:37 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c81bca65 x11-libs/motif: Replace prune_libtool_files with find. Package-Manager: Portage-2.3.5, Repoman-2.3.2 x11-libs/motif/motif-2.3.6-r1.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/x11-libs/motif/motif-2.3.6-r1.ebuild b/x11-libs/motif/motif-2.3.6-r1.ebuild index 0d602dc2fb9..1971eb94c34 100644 --- a/x11-libs/motif/motif-2.3.6-r1.ebuild +++ b/x11-libs/motif/motif-2.3.6-r1.ebuild @@ -3,7 +3,7 @@ EAPI=6 -inherit autotools eutils flag-o-matic multilib toolchain-funcs multilib-minimal +inherit autotools flag-o-matic multilib toolchain-funcs multilib-minimal DESCRIPTION="The Motif user interface component toolkit" HOMEPAGE="https://sourceforge.net/projects/motif/ @@ -110,7 +110,7 @@ multilib_src_install_all() { # cleanup rm -rf "${ED}"/usr/share/Xm - prune_libtool_files + find "${D}" -type f -name "*.la" -delete || die dodoc BUGREPORT ChangeLog README RELEASE RELNOTES TODO }