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 B908B1382C5 for ; Mon, 31 May 2021 15:24:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9B683E0817; Mon, 31 May 2021 15:24:38 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 81CABE0817 for ; Mon, 31 May 2021 15:24:38 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 37D9A340D94 for ; Mon, 31 May 2021 15:24:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 89AE779C for ; Mon, 31 May 2021 15:24:35 +0000 (UTC) From: "Guilherme Amadio" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Guilherme Amadio" Message-ID: <1622474658.535721eea4211cae47345ba545aa6bc08a22437d.amadio@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/uftrace/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/uftrace/uftrace-0.10.ebuild X-VCS-Directories: dev-util/uftrace/ X-VCS-Committer: amadio X-VCS-Committer-Name: Guilherme Amadio X-VCS-Revision: 535721eea4211cae47345ba545aa6bc08a22437d X-VCS-Branch: master Date: Mon, 31 May 2021 15:24:35 +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: 045205a9-ec90-4e04-a69b-33b7cf05d23e X-Archives-Hash: 24bb9a11c411fe079507e6c2c54df0ea commit: 535721eea4211cae47345ba545aa6bc08a22437d Author: Guilherme Amadio gentoo org> AuthorDate: Mon May 31 15:02:18 2021 +0000 Commit: Guilherme Amadio gentoo org> CommitDate: Mon May 31 15:24:18 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=535721ee dev-util/uftrace: fix calling of gcc directly Package-Manager: Portage-3.0.19, Repoman-3.0.3 Signed-off-by: Guilherme Amadio gentoo.org> dev-util/uftrace/uftrace-0.10.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-util/uftrace/uftrace-0.10.ebuild b/dev-util/uftrace/uftrace-0.10.ebuild index 48c35a456db..92c30228011 100644 --- a/dev-util/uftrace/uftrace-0.10.ebuild +++ b/dev-util/uftrace/uftrace-0.10.ebuild @@ -5,7 +5,7 @@ EAPI=7 LUA_COMPAT=( luajit ) -inherit bash-completion-r1 lua-single +inherit bash-completion-r1 lua-single toolchain-funcs DESCRIPTION="Function (graph) tracer for user-space" HOMEPAGE="https://github.com/namhyung/uftrace" @@ -48,7 +48,7 @@ src_configure() { --without-libluajit ) fi - econf "${myconf[@]}" + CC=$(tc-getCC) LD=$(tc-getLD) econf "${myconf[@]}" } src_compile() {