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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 4FF3E158018 for ; Sun, 3 Oct 2021 06:46:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9AE64E088F; Sun, 3 Oct 2021 06:46:21 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7F2D4E088F for ; Sun, 3 Oct 2021 06:46:21 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 94AFE342BC5 for ; Sun, 3 Oct 2021 06:46:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E1DAB11C for ; Sun, 3 Oct 2021 06:46:18 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1633243538.9f18b96e61c62b489b27a46edce06df038d719d3.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-libs/llvm-libunwind/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-libs/llvm-libunwind/llvm-libunwind-13.0.0.9999.ebuild sys-libs/llvm-libunwind/llvm-libunwind-13.0.0.ebuild sys-libs/llvm-libunwind/llvm-libunwind-14.0.0.9999.ebuild X-VCS-Directories: sys-libs/llvm-libunwind/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 9f18b96e61c62b489b27a46edce06df038d719d3 X-VCS-Branch: master Date: Sun, 3 Oct 2021 06:46:18 +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: 002fd6c9-c85c-4bce-b4a0-4205ba1cfdea X-Archives-Hash: 111ecda069f39f6f8be4d124599268fd commit: 9f18b96e61c62b489b27a46edce06df038d719d3 Author: Michał Górny gentoo org> AuthorDate: Sun Oct 3 06:45:38 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Oct 3 06:45:38 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f18b96e sys-libs/llvm-libunwind: Fix var typo in remaining versions Signed-off-by: Michał Górny gentoo.org> sys-libs/llvm-libunwind/llvm-libunwind-13.0.0.9999.ebuild | 2 +- sys-libs/llvm-libunwind/llvm-libunwind-13.0.0.ebuild | 2 +- sys-libs/llvm-libunwind/llvm-libunwind-14.0.0.9999.ebuild | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/sys-libs/llvm-libunwind/llvm-libunwind-13.0.0.9999.ebuild b/sys-libs/llvm-libunwind/llvm-libunwind-13.0.0.9999.ebuild index a4b1aceef51..ed8465bf6d2 100644 --- a/sys-libs/llvm-libunwind/llvm-libunwind-13.0.0.9999.ebuild +++ b/sys-libs/llvm-libunwind/llvm-libunwind-13.0.0.9999.ebuild @@ -44,7 +44,7 @@ multilib_src_configure() { # link to compiler-rt # https://github.com/gentoo/gentoo/pull/21516 if tc-is-clang; then - local compiler-rt=$($(tc-getCC) ${CFLAGS} ${CPPFLAGS} \ + local compiler_rt=$($(tc-getCC) ${CFLAGS} ${CPPFLAGS} \ ${LD_FLAGS} -print-libgcc-file-name) if [[ ${compiler_rt} == *libclang_rt* ]]; then use_compiler_rt=ON diff --git a/sys-libs/llvm-libunwind/llvm-libunwind-13.0.0.ebuild b/sys-libs/llvm-libunwind/llvm-libunwind-13.0.0.ebuild index ad3bb8063d6..31fc73bd909 100644 --- a/sys-libs/llvm-libunwind/llvm-libunwind-13.0.0.ebuild +++ b/sys-libs/llvm-libunwind/llvm-libunwind-13.0.0.ebuild @@ -44,7 +44,7 @@ multilib_src_configure() { # link to compiler-rt # https://github.com/gentoo/gentoo/pull/21516 if tc-is-clang; then - local compiler-rt=$($(tc-getCC) ${CFLAGS} ${CPPFLAGS} \ + local compiler_rt=$($(tc-getCC) ${CFLAGS} ${CPPFLAGS} \ ${LD_FLAGS} -print-libgcc-file-name) if [[ ${compiler_rt} == *libclang_rt* ]]; then use_compiler_rt=ON diff --git a/sys-libs/llvm-libunwind/llvm-libunwind-14.0.0.9999.ebuild b/sys-libs/llvm-libunwind/llvm-libunwind-14.0.0.9999.ebuild index a4b1aceef51..ed8465bf6d2 100644 --- a/sys-libs/llvm-libunwind/llvm-libunwind-14.0.0.9999.ebuild +++ b/sys-libs/llvm-libunwind/llvm-libunwind-14.0.0.9999.ebuild @@ -44,7 +44,7 @@ multilib_src_configure() { # link to compiler-rt # https://github.com/gentoo/gentoo/pull/21516 if tc-is-clang; then - local compiler-rt=$($(tc-getCC) ${CFLAGS} ${CPPFLAGS} \ + local compiler_rt=$($(tc-getCC) ${CFLAGS} ${CPPFLAGS} \ ${LD_FLAGS} -print-libgcc-file-name) if [[ ${compiler_rt} == *libclang_rt* ]]; then use_compiler_rt=ON