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 8AEA815ACFB for ; Sat, 15 Apr 2023 05:13:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8FD90E07D4; Sat, 15 Apr 2023 05:13:22 +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 75648E07D4 for ; Sat, 15 Apr 2023 05:13:22 +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 4C045340EF3 for ; Sat, 15 Apr 2023 05:13:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 93040A41 for ; Sat, 15 Apr 2023 05:13:19 +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: <1681535556.2c822b9ad45a7b13c5ebe9775378b1e13614b08e.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/busybox/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/busybox/busybox-1.34.1-r2.ebuild sys-apps/busybox/busybox-1.35.0-r2.ebuild sys-apps/busybox/busybox-9999.ebuild X-VCS-Directories: sys-apps/busybox/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 2c822b9ad45a7b13c5ebe9775378b1e13614b08e X-VCS-Branch: master Date: Sat, 15 Apr 2023 05:13:19 +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: 0efb6f5a-a2c9-46b3-9f6c-1a2aff6679ed X-Archives-Hash: d1377fe9d2e01b58f13240aaab7f8747 commit: 2c822b9ad45a7b13c5ebe9775378b1e13614b08e Author: Sam James gentoo org> AuthorDate: Sat Apr 15 05:12:19 2023 +0000 Commit: Sam James gentoo org> CommitDate: Sat Apr 15 05:12:36 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c822b9a sys-apps/busybox: print link lines verbosely Noticed when trying to debug a bfd hang. Signed-off-by: Sam James gentoo.org> sys-apps/busybox/busybox-1.34.1-r2.ebuild | 3 +++ sys-apps/busybox/busybox-1.35.0-r2.ebuild | 3 +++ sys-apps/busybox/busybox-9999.ebuild | 5 ++++- 3 files changed, 10 insertions(+), 1 deletion(-) diff --git a/sys-apps/busybox/busybox-1.34.1-r2.ebuild b/sys-apps/busybox/busybox-1.34.1-r2.ebuild index d9a0625448df..ffc3063a4cc6 100644 --- a/sys-apps/busybox/busybox-1.34.1-r2.ebuild +++ b/sys-apps/busybox/busybox-1.34.1-r2.ebuild @@ -108,6 +108,9 @@ src_prepare() { sed -i \ -e 's:-static-libgcc::' \ Makefile.flags || die + + # Print all link lines too + sed -i -e 's:debug=false:debug=true:' scripts/trylink || die } src_configure() { diff --git a/sys-apps/busybox/busybox-1.35.0-r2.ebuild b/sys-apps/busybox/busybox-1.35.0-r2.ebuild index ba000099c692..711785eae12b 100644 --- a/sys-apps/busybox/busybox-1.35.0-r2.ebuild +++ b/sys-apps/busybox/busybox-1.35.0-r2.ebuild @@ -109,6 +109,9 @@ src_prepare() { sed -i \ -e 's:-static-libgcc::' \ Makefile.flags || die + + # Print all link lines too + sed -i -e 's:debug=false:debug=true:' scripts/trylink || die } src_configure() { diff --git a/sys-apps/busybox/busybox-9999.ebuild b/sys-apps/busybox/busybox-9999.ebuild index 6450127bf54b..51f115d22ffb 100644 --- a/sys-apps/busybox/busybox-9999.ebuild +++ b/sys-apps/busybox/busybox-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # See `man savedconfig.eclass` for info on how to use USE=savedconfig. @@ -105,6 +105,9 @@ src_prepare() { sed -i \ -e 's:-static-libgcc::' \ Makefile.flags || die + + # Print all link lines too + sed -i -e 's:debug=false:debug=true:' scripts/trylink || die } src_configure() {