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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id CAB1B1581F0 for ; Thu, 12 Dec 2024 07:47:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D8287E0D2B; Thu, 12 Dec 2024 07:47:14 +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 AC766E0D2B for ; Thu, 12 Dec 2024 07:47:13 +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 873063430F1 for ; Thu, 12 Dec 2024 07:47:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D7B591E15 for ; Thu, 12 Dec 2024 07:47:10 +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: <1733989616.7d99be77433bf10fb0ce6fc99c7b40de700ed650.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/ X-VCS-Repository: repo/gentoo X-VCS-Files: eclass/toolchain.eclass X-VCS-Directories: eclass/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 7d99be77433bf10fb0ce6fc99c7b40de700ed650 X-VCS-Branch: master Date: Thu, 12 Dec 2024 07:47:10 +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: c17fb14a-116a-4010-be00-7dc0b527bc24 X-Archives-Hash: 7b9371227ce6627d44fac4efde17de4d commit: 7d99be77433bf10fb0ce6fc99c7b40de700ed650 Author: Sam James gentoo org> AuthorDate: Thu Dec 12 07:42:00 2024 +0000 Commit: Sam James gentoo org> CommitDate: Thu Dec 12 07:46:56 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d99be77 toolchain.eclass: stop deleting `install-tools` Since da19e742f2d45221bec7a70c23903278c28e2664, we deleted anything in `install-tools`, but this includes `mkheaders` which is needed to refresh fixincludes. See https://gcc.gnu.org/onlinedocs/gcc/Fixed-Headers.html. Bug: https://bugs.gentoo.org/933282 Signed-off-by: Sam James gentoo.org> eclass/toolchain.eclass | 4 ---- 1 file changed, 4 deletions(-) diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass index 6584e57fb0fd..d72047e891d1 100644 --- a/eclass/toolchain.eclass +++ b/eclass/toolchain.eclass @@ -2514,8 +2514,6 @@ toolchain_src_install() { pushd "${WORKDIR}"/build-jit > /dev/null || die S="${WORKDIR}"/build-jit emake DESTDIR="${D}" -j1 install - # Punt some tools which are really only useful while building gcc - find "${ED}" -name install-tools -prune -type d -exec rm -rf "{}" \; || die # This one comes with binutils find "${ED}" -name libiberty.a -delete || die @@ -2538,8 +2536,6 @@ toolchain_src_install() { # - https://gcc.gnu.org/PR109898 S="${WORKDIR}"/build emake DESTDIR="${D}" -j1 install - # Punt some tools which are really only useful while building gcc - find "${ED}" -name install-tools -prune -type d -exec rm -rf "{}" \; || die # This one comes with binutils find "${ED}" -name libiberty.a -delete || die