From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id C29D859CA3 for ; Tue, 8 Mar 2016 03:45:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AE89B21C021; Tue, 8 Mar 2016 03:45:11 +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 08D8E21C021 for ; Tue, 8 Mar 2016 03:45:10 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 89EC1340662 for ; Tue, 8 Mar 2016 03:45:09 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 956BB1BA0 for ; Tue, 8 Mar 2016 03:45:05 +0000 (UTC) From: "Mike Frysinger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Frysinger" Message-ID: <1457408696.29564fa547bc396bcd59742a8ee9d5707766c112.vapier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/findutils/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/findutils/findutils-4.6.0.ebuild X-VCS-Directories: sys-apps/findutils/ X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: 29564fa547bc396bcd59742a8ee9d5707766c112 X-VCS-Branch: master Date: Tue, 8 Mar 2016 03:45:05 +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: 72743b75-4d3e-4c01-a13e-15c6a179bfe2 X-Archives-Hash: 0823c7e5bb9df7549df096e649819a48 commit: 29564fa547bc396bcd59742a8ee9d5707766c112 Author: Mike Frysinger gentoo org> AuthorDate: Tue Mar 8 03:39:26 2016 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Tue Mar 8 03:44:56 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=29564fa5 sys-apps/findutils: fix building w/newer glibc sys-apps/findutils/findutils-4.6.0.ebuild | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sys-apps/findutils/findutils-4.6.0.ebuild b/sys-apps/findutils/findutils-4.6.0.ebuild index 935a16c..2c394d0 100644 --- a/sys-apps/findutils/findutils-4.6.0.ebuild +++ b/sys-apps/findutils/findutils-4.6.0.ebuild @@ -31,6 +31,10 @@ src_prepare() { # Don't build or install locate because it conflicts with slocate, # which is a secure version of locate. See bug 18729 sed -i '/^SUBDIRS/s/locate//' Makefile.in + + # Newer C libraries omit this include from sys/types.h. + # https://lists.gnu.org/archive/html/bug-gnulib/2016-03/msg00018.html + sed -i '1i#include ' gl/lib/mountlist.c || die } src_configure() {