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 BDE8A158095 for ; Fri, 16 Sep 2022 00:46:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BD2B4E0918; Fri, 16 Sep 2022 00:46:32 +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 A2634E0918 for ; Fri, 16 Sep 2022 00:46:32 +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 5940A335D51 for ; Fri, 16 Sep 2022 00:46:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C7F145D4 for ; Fri, 16 Sep 2022 00:46:29 +0000 (UTC) From: "Georgy Yakovlev" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Georgy Yakovlev" Message-ID: <1663289172.7a2ff15833ad90d6e4171165adbca4c1aafcaa12.gyakovlev@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/rust/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lang/rust/rust-1.63.0-r1.ebuild X-VCS-Directories: dev-lang/rust/ X-VCS-Committer: gyakovlev X-VCS-Committer-Name: Georgy Yakovlev X-VCS-Revision: 7a2ff15833ad90d6e4171165adbca4c1aafcaa12 X-VCS-Branch: master Date: Fri, 16 Sep 2022 00:46:29 +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: e0eda581-c456-478f-9d23-ce14f8c0c16c X-Archives-Hash: c44389d24afa7353b808244731075286 commit: 7a2ff15833ad90d6e4171165adbca4c1aafcaa12 Author: Georgy Yakovlev gentoo org> AuthorDate: Fri Sep 16 00:45:49 2022 +0000 Commit: Georgy Yakovlev gentoo org> CommitDate: Fri Sep 16 00:46:12 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a2ff158 dev-lang/rust: improve comments with dots Signed-off-by: Georgy Yakovlev gentoo.org> dev-lang/rust/rust-1.63.0-r1.ebuild | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/dev-lang/rust/rust-1.63.0-r1.ebuild b/dev-lang/rust/rust-1.63.0-r1.ebuild index a962d85a5c15..71c1aca5798a 100644 --- a/dev-lang/rust/rust-1.63.0-r1.ebuild +++ b/dev-lang/rust/rust-1.63.0-r1.ebuild @@ -256,9 +256,9 @@ pkg_setup() { esetup_unwind_hack() { # https://bugs.gentoo.org/870280 - # this is a hack needed to bootstrap with libgcc_s linked tarball on llvm-libunwind system - # it should trigger for internal bootstrap or system-bootstrap with rust-bin - # the whole idea is for stage0 to bootstrap with fake libgcc_s + # this is a hack needed to bootstrap with libgcc_s linked tarball on llvm-libunwind system. + # it should trigger for internal bootstrap or system-bootstrap with rust-bin. + # the whole idea is for stage0 to bootstrap with fake libgcc_s. # final stage will receive -L${T}/lib but not -lgcc_s args, producing clean compiler. local fakelib="${T}/fakelib" mkdir -p "${fakelib}" || die @@ -268,8 +268,8 @@ esetup_unwind_hack() { export LD_LIBRARY_PATH="${fakelib}" export RUSTFLAGS+=" -L${fakelib}" # this is a literally magic variable that gets through cargo cache, without it some - # crates ignore RUSTFLAGS - # this variable can not contain leading space + # crates ignore RUSTFLAGS. + # this variable can not contain leading space. export MAGIC_EXTRA_RUSTFLAGS+="${MAGIC_EXTRA_RUSTFLAGS:+ }-L${fakelib}" }