Gentoo Archives: gentoo-commits

From: Guilherme Amadio <amadio@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/uftrace/
Date: Mon, 31 May 2021 15:24:39
Message-Id: 1622474658.535721eea4211cae47345ba545aa6bc08a22437d.amadio@gentoo
1 commit: 535721eea4211cae47345ba545aa6bc08a22437d
2 Author: Guilherme Amadio <amadio <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 31 15:02:18 2021 +0000
4 Commit: Guilherme Amadio <amadio <AT> gentoo <DOT> org>
5 CommitDate: Mon May 31 15:24:18 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=535721ee
7
8 dev-util/uftrace: fix calling of gcc directly
9
10 Package-Manager: Portage-3.0.19, Repoman-3.0.3
11 Signed-off-by: Guilherme Amadio <amadio <AT> gentoo.org>
12
13 dev-util/uftrace/uftrace-0.10.ebuild | 4 ++--
14 1 file changed, 2 insertions(+), 2 deletions(-)
15
16 diff --git a/dev-util/uftrace/uftrace-0.10.ebuild b/dev-util/uftrace/uftrace-0.10.ebuild
17 index 48c35a456db..92c30228011 100644
18 --- a/dev-util/uftrace/uftrace-0.10.ebuild
19 +++ b/dev-util/uftrace/uftrace-0.10.ebuild
20 @@ -5,7 +5,7 @@ EAPI=7
21
22 LUA_COMPAT=( luajit )
23
24 -inherit bash-completion-r1 lua-single
25 +inherit bash-completion-r1 lua-single toolchain-funcs
26
27 DESCRIPTION="Function (graph) tracer for user-space"
28 HOMEPAGE="https://github.com/namhyung/uftrace"
29 @@ -48,7 +48,7 @@ src_configure() {
30 --without-libluajit
31 )
32 fi
33 - econf "${myconf[@]}"
34 + CC=$(tc-getCC) LD=$(tc-getLD) econf "${myconf[@]}"
35 }
36
37 src_compile() {