Gentoo Archives: gentoo-commits

From: Thomas Deutschmann <whissi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/genkernel:master commit in: gkbuilds/
Date: Thu, 16 Jul 2020 15:03:37
Message-Id: 1594909757.f8d41285f26cf220dbc1a448639cffaf820e648b.whissi@gentoo
1 commit: f8d41285f26cf220dbc1a448639cffaf820e648b
2 Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jul 14 16:11:47 2020 +0000
4 Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
5 CommitDate: Thu Jul 16 14:29:17 2020 +0000
6 URL: https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=f8d41285
7
8 strace: Honor toolchain
9
10 Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
11
12 gkbuilds/strace.gkbuild | 4 +++-
13 1 file changed, 3 insertions(+), 1 deletion(-)
14
15 diff --git a/gkbuilds/strace.gkbuild b/gkbuilds/strace.gkbuild
16 index 540f6cb..62399ce 100644
17 --- a/gkbuilds/strace.gkbuild
18 +++ b/gkbuilds/strace.gkbuild
19 @@ -1,4 +1,4 @@
20 -# Copyright 1999-2019 Gentoo Authors
21 +# Copyright 1999-2020 Gentoo Authors
22 # Distributed under the terms of the GNU General Public License v2
23
24 src_configure() {
25 @@ -11,6 +11,8 @@ src_configure() {
26 --without-libdw
27 )
28
29 + CC_FOR_BUILD="$(tc-getBUILD_CC)" \
30 + CPP_FOR_BUILD="$(tc-getBUILD_CPP)" \
31 gkconf "${myconf[@]}"
32 }