From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1543368-garchives=archives.gentoo.org@lists.gentoo.org>
Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80])
	(using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)
	 key-exchange X25519 server-signature RSA-PSS (2048 bits))
	(No client certificate requested)
	by finch.gentoo.org (Postfix) with ESMTPS id 78C3815800A
	for <garchives@archives.gentoo.org>; Fri,  4 Aug 2023 01:53:45 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id AF6E9E0D8A;
	Fri,  4 Aug 2023 01:53:44 +0000 (UTC)
Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4])
	(using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)
	 key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256)
	(No client certificate requested)
	by pigeon.gentoo.org (Postfix) with ESMTPS id 9BD41E0D8A
	for <gentoo-commits@lists.gentoo.org>; Fri,  4 Aug 2023 01:53:44 +0000 (UTC)
Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52])
	(using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)
	 key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256)
	(No client certificate requested)
	by smtp.gentoo.org (Postfix) with ESMTPS id 9D896340E0E
	for <gentoo-commits@lists.gentoo.org>; Fri,  4 Aug 2023 01:53:43 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id E4CF2EED
	for <gentoo-commits@lists.gentoo.org>; Fri,  4 Aug 2023 01:53:41 +0000 (UTC)
From: "Sam James" <sam@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, "Sam James" <sam@gentoo.org>
Message-ID: <1691113896.fc7c0020a52f2e943b21dbf971c5ab1cc8695bce.sam@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.41.ebuild
X-VCS-Directories: sys-libs/binutils-libs/
X-VCS-Committer: sam
X-VCS-Committer-Name: Sam James
X-VCS-Revision: fc7c0020a52f2e943b21dbf971c5ab1cc8695bce
X-VCS-Branch: master
Date: Fri,  4 Aug 2023 01:53:41 +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: 5554420c-2c45-4d2a-b220-599fb2e5f5eb
X-Archives-Hash: 60749693f901758cb6cb936d82c00be4

commit:     fc7c0020a52f2e943b21dbf971c5ab1cc8695bce
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Aug  4 01:50:29 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Aug  4 01:51:36 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fc7c0020

sys-libs/binutils-libs: pass --disable-dependency-tracking, --disable-silent-rules

We already do this for gdb, do the same for binutils. Portage/econf only greps
the top-level configure which has neither of these, but the subconfigure dirs
do.

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-libs/binutils-libs/binutils-libs-2.41.ebuild | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/sys-libs/binutils-libs/binutils-libs-2.41.ebuild b/sys-libs/binutils-libs/binutils-libs-2.41.ebuild
index 377c162c2ef1..f8d9487028fc 100644
--- a/sys-libs/binutils-libs/binutils-libs-2.41.ebuild
+++ b/sys-libs/binutils-libs/binutils-libs-2.41.ebuild
@@ -74,6 +74,11 @@ pkgversion() {
 
 multilib_src_configure() {
 	local myconf=(
+		# portage's econf() does not detect presence of --d-d-t
+		# because it greps only top-level ./configure. But not
+		# libiberty's or bfd's configure.
+		--disable-dependency-tracking
+		--disable-silent-rules
 		--enable-obsolete
 		--enable-shared
 		--enable-threads
@@ -144,12 +149,8 @@ multilib_src_configure() {
 		Makefile || die
 }
 
-multilib_src_compile() {
-	emake V=1
-}
-
 multilib_src_install() {
-	emake V=1 DESTDIR="${D}" install
+	emake DESTDIR="${D}" install
 
 	# Provided by sys-devel/gdb instead
 	rm "${ED}"/usr/share/info/sframe-spec.info || die