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.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 B49EE158091 for ; Wed, 8 Jun 2022 01:20:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AD2C8E0828; Wed, 8 Jun 2022 01:20:37 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 8EAF7E0828 for ; Wed, 8 Jun 2022 01:20:37 +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 379A2340DFF for ; Wed, 8 Jun 2022 01:20:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8CEDE456 for ; Wed, 8 Jun 2022 01:20:04 +0000 (UTC) From: "Sam James" 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" Message-ID: <1654651199.0042fea33b4ed6e0646a9806803fd569dadf8352.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.38-r2.ebuild X-VCS-Directories: sys-libs/binutils-libs/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 0042fea33b4ed6e0646a9806803fd569dadf8352 X-VCS-Branch: master Date: Wed, 8 Jun 2022 01:20:04 +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: ce462393-ec20-4274-ad5b-2c9666811e32 X-Archives-Hash: d085309b27c22f4a8ba8b56ab05a147c commit: 0042fea33b4ed6e0646a9806803fd569dadf8352 Author: Sam James gentoo org> AuthorDate: Wed Jun 8 01:19:17 2022 +0000 Commit: Sam James gentoo org> CommitDate: Wed Jun 8 01:19:59 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0042fea3 sys-libs/binutils-libs: verbose logs, use output synchronisation See: 543e8a28d137dfac2ee430311e326c7c68eefa56 Signed-off-by: Sam James gentoo.org> sys-libs/binutils-libs/binutils-libs-2.38-r2.ebuild | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/sys-libs/binutils-libs/binutils-libs-2.38-r2.ebuild b/sys-libs/binutils-libs/binutils-libs-2.38-r2.ebuild index 3efe075b3e60..5fa1286a4441 100644 --- a/sys-libs/binutils-libs/binutils-libs-2.38-r2.ebuild +++ b/sys-libs/binutils-libs/binutils-libs-2.38-r2.ebuild @@ -55,6 +55,11 @@ src_prepare() { libctf/configure || die fi + # See https://www.gnu.org/software/make/manual/html_node/Parallel-Output.html + # Avoid really confusing logs from subconfigure spam, makes logs far + # more legible. + MAKEOPTS="--output-sync=line ${MAKEOPTS}" + default } @@ -132,8 +137,13 @@ multilib_src_configure() { Makefile || die } +multilib_src_compile() { + emake V=1 +} + multilib_src_install() { - default + emake V=1 DESTDIR="${D}" install + # Provide libiberty.h directly. dosym libiberty/libiberty.h /usr/include/libiberty.h }