From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1119266-garchives=archives.gentoo.org@lists.gentoo.org> 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 7453D138334 for <garchives@archives.gentoo.org>; Tue, 29 Oct 2019 00:00:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BECAAE09E7; Tue, 29 Oct 2019 00:00:24 +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 A437BE09E7 for <gentoo-commits@lists.gentoo.org>; Tue, 29 Oct 2019 00:00:24 +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 C678034C52C for <gentoo-commits@lists.gentoo.org>; Tue, 29 Oct 2019 00:00:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 378FE71A for <gentoo-commits@lists.gentoo.org>; Tue, 29 Oct 2019 00:00:06 +0000 (UTC) From: "Sergei Trofimovich" <slyfox@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sergei Trofimovich" <slyfox@gentoo.org> Message-ID: <1572307196.763246f9f9c17c795b8a299e9d97347a81df9a28.slyfox@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-libs/binutils-libs/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-libs/binutils-libs/binutils-libs-2.32-r1.ebuild X-VCS-Directories: sys-libs/binutils-libs/ X-VCS-Committer: slyfox X-VCS-Committer-Name: Sergei Trofimovich X-VCS-Revision: 763246f9f9c17c795b8a299e9d97347a81df9a28 X-VCS-Branch: master Date: Tue, 29 Oct 2019 00:00:06 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 6730a859-9781-44b5-ad84-35d5126889e6 X-Archives-Hash: e61edc3eaea83fecdf17ae4f5738ac00 commit: 763246f9f9c17c795b8a299e9d97347a81df9a28 Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org> AuthorDate: Mon Oct 28 23:59:46 2019 +0000 Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org> CommitDate: Mon Oct 28 23:59:56 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=763246f9 sys-libs/binutils-libs: drop texinfo from DEPENDs, bug #622652 Don't crash the build if texinfo is not installed. It's a port of a hack we have in sys-devel/binutils. Reported-by: William Throwe Closes: https://bugs.gentoo.org/622652 Package-Manager: Portage-2.3.78, Repoman-2.3.17 Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org> sys-libs/binutils-libs/binutils-libs-2.32-r1.ebuild | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/sys-libs/binutils-libs/binutils-libs-2.32-r1.ebuild b/sys-libs/binutils-libs/binutils-libs-2.32-r1.ebuild index 1d047890a61..193bdfdaded 100644 --- a/sys-libs/binutils-libs/binutils-libs-2.32-r1.ebuild +++ b/sys-libs/binutils-libs/binutils-libs-2.32-r1.ebuild @@ -25,7 +25,6 @@ KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 ~riscv s390 sh sp COMMON_DEPEND="sys-libs/zlib[${MULTILIB_USEDEP}]" DEPEND="${COMMON_DEPEND} - >=sys-apps/texinfo-4.7 nls? ( sys-devel/gettext )" # Need a newer binutils-config that'll reset include/lib symlinks for us. RDEPEND="${COMMON_DEPEND} @@ -105,6 +104,12 @@ multilib_src_configure() { ECONF_SOURCE=${S} \ econf "${myconf[@]}" + + # Prevent makeinfo from running as we don't build docs here. + # bug #622652 + sed -i \ + -e '/^MAKEINFO/s:=.*:= true:' \ + Makefile || die } multilib_src_install() {