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 151991395E2 for ; Thu, 10 Nov 2016 22:36:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 58567E08B2; Thu, 10 Nov 2016 22:36:08 +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 42088E08B2 for ; Thu, 10 Nov 2016 22:36:08 +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 703F0341683 for ; Thu, 10 Nov 2016 22:36:07 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D281124BA for ; Thu, 10 Nov 2016 22:36:03 +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: <1478817352.17093da05e321e4afaeef1d9cd26c118bcd2c8b2.vapier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/mit-krb5/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-crypt/mit-krb5/mit-krb5-1.14.4.ebuild X-VCS-Directories: app-crypt/mit-krb5/ X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: 17093da05e321e4afaeef1d9cd26c118bcd2c8b2 X-VCS-Branch: master Date: Thu, 10 Nov 2016 22:36:03 +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: 6b42ae8a-2bfd-4edc-b14a-13ecbd40a50e X-Archives-Hash: 7f6dbfbbcf38b88fa6d8c08ee12f995f commit: 17093da05e321e4afaeef1d9cd26c118bcd2c8b2 Author: Mike Frysinger gentoo org> AuthorDate: Thu Nov 10 22:34:38 2016 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Thu Nov 10 22:35:52 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=17093da0 app-crypt/mit-krb5: delete local lib code to guarantee system usage These libs are already pulled from the system, but delete the source just to guarantee we don't accidentally regress in the future. app-crypt/mit-krb5/mit-krb5-1.14.4.ebuild | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app-crypt/mit-krb5/mit-krb5-1.14.4.ebuild b/app-crypt/mit-krb5/mit-krb5-1.14.4.ebuild index 4a050dd..9e30788 100644 --- a/app-crypt/mit-krb5/mit-krb5-1.14.4.ebuild +++ b/app-crypt/mit-krb5/mit-krb5-1.14.4.ebuild @@ -59,6 +59,10 @@ src_prepare() { epatch "${FILESDIR}/${PN}-1.12_warn_cflags.patch" epatch "${FILESDIR}/${PN}-config_LDFLAGS.patch" + # Make sure we always use the system copies. + rm -rf util/{et,ss,verto} + sed -i 's:^[[:space:]]*util/verto$::' configure.in || die + eautoreconf }