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 D94BD15808B for ; Tue, 1 Oct 2024 02:16:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F3DA2E29A3; Tue, 1 Oct 2024 02:16:04 +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 DA65BE29A3 for ; Tue, 1 Oct 2024 02:16:04 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1F80133BF3B for ; Tue, 1 Oct 2024 02:16:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id ACCCF1F2E for ; Tue, 1 Oct 2024 02:16:02 +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: <1727748904.2492e4efc220c6f50eb2cfa01addcd1aaf198063.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: 2492e4efc220c6f50eb2cfa01addcd1aaf198063 X-VCS-Branch: master Date: Tue, 1 Oct 2024 02:16:02 +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: 21f584d3-7fc1-461d-b0ae-9c86b772799e X-Archives-Hash: 6fc083fddbdf8cd1fa5d2854609537d9 commit: 2492e4efc220c6f50eb2cfa01addcd1aaf198063 Author: Sam James gentoo org> AuthorDate: Tue Oct 1 02:15:04 2024 +0000 Commit: Sam James gentoo org> CommitDate: Tue Oct 1 02:15:04 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2492e4ef toolchain.eclass: reflow comments slightly Signed-off-by: Sam James gentoo.org> eclass/toolchain.eclass | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass index a5c7d5df47d5..65523041302e 100644 --- a/eclass/toolchain.eclass +++ b/eclass/toolchain.eclass @@ -956,8 +956,8 @@ toolchain_setup_ada() { ;; esac - # Easier to substitute these values in rather than escape - # lots of bits above in heredoc. + # Easier to substitute these values in rather than escape lots of + # bits above in the heredoc. sed -i \ -e "s:\${BROOT}:${BROOT}:" \ -e "s:\${CBUILD}:${CBUILD}:" \ @@ -965,9 +965,9 @@ toolchain_setup_ada() { -e "s:\${ada_bootstrap}:${ada_bootstrap}:" \ "${T}"/ada.spec || die - # The Makefile tries to find libgnat by querying $(CC) which - # won't work for us as the stage1 compiler doesn't necessarily - # have Ada support. Substitute the Ada compiler we found earlier. + # The Makefile tries to find libgnat by querying $(CC) which won't + # work for us as the stage1 compiler doesn't necessarily have Ada + # support. Substitute the Ada compiler we found earlier. local adalib adalib=$(${CBUILD}-gcc-${ada_bootstrap} -print-libgcc-file-name || die "Finding adalib dir failed") adalib="${adalib%/*}/adalib" @@ -975,8 +975,8 @@ toolchain_setup_ada() { -e "s:adalib=.*:adalib=${adalib}:" \ "${S}"/gcc/ada/gcc-interface/Make-lang.in || die - # Create bin wrappers because not all of the build system - # respects GNATBIND or GNATMAKE. + # Create bin wrappers because not all of the build system respects + # GNATBIND or GNATMAKE. mkdir "${T}"/ada-wrappers || die local tool for tool in gnat{,bind,chop,clean,kr,link,ls,make,name,prep} ; do