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 EC84F13997F for ; Wed, 13 Nov 2019 13:16:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E5FC5E0826; Wed, 13 Nov 2019 13:16:19 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 D000EE0826 for ; Wed, 13 Nov 2019 13:16:19 +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 93F6434CD8E for ; Wed, 13 Nov 2019 13:16:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BAF2F8AB for ; Wed, 13 Nov 2019 13:16:15 +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: <1573650968.080e9741c7df9ab85f4900fc0500821a28f5755f.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/acl/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/acl/acl-2.2.53.ebuild X-VCS-Directories: sys-apps/acl/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: 080e9741c7df9ab85f4900fc0500821a28f5755f X-VCS-Branch: master Date: Wed, 13 Nov 2019 13:16:15 +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: 3ef85e48-91af-4a93-a90a-826f79665489 X-Archives-Hash: 77f7d8fdcea6e0b8e448f25c6b3f0581 commit: 080e9741c7df9ab85f4900fc0500821a28f5755f Author: Lars Wendler gentoo org> AuthorDate: Wed Nov 13 13:08:52 2019 +0000 Commit: Lars Wendler gentoo org> CommitDate: Wed Nov 13 13:16:08 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=080e9741 sys-apps/acl: Filter out -flto* in order to get functional binaries Closes: https://bugs.gentoo.org/667372 Package-Manager: Portage-2.3.79, Repoman-2.3.18 Signed-off-by: Lars Wendler gentoo.org> sys-apps/acl/acl-2.2.53.ebuild | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/sys-apps/acl/acl-2.2.53.ebuild b/sys-apps/acl/acl-2.2.53.ebuild index 97265989420..0ba85a55515 100644 --- a/sys-apps/acl/acl-2.2.53.ebuild +++ b/sys-apps/acl/acl-2.2.53.ebuild @@ -3,7 +3,7 @@ EAPI="6" -inherit libtool ltprune toolchain-funcs multilib-minimal usr-ldscript +inherit flag-o-matic libtool ltprune toolchain-funcs multilib-minimal usr-ldscript DESCRIPTION="access control list utilities, libraries and headers" HOMEPAGE="https://savannah.nongnu.org/projects/acl" @@ -20,6 +20,12 @@ RDEPEND=" DEPEND="${RDEPEND} nls? ( sys-devel/gettext )" +pkg_setup() { + # filter out -flto flags as they break getfacl/setfacl binaries + # (bug #667372) + filter-flags -flto* +} + src_prepare() { default elibtoolize #580792