diff options
author | Thomas Deutschmann <whissi@gentoo.org> | 2020-07-14 18:11:47 +0200 |
---|---|---|
committer | Thomas Deutschmann <whissi@gentoo.org> | 2020-07-16 16:29:17 +0200 |
commit | f8d41285f26cf220dbc1a448639cffaf820e648b (patch) | |
tree | 77ae05d7e430bb660a53cde8dce4133c320d1ac2 /gkbuilds | |
parent | libgcrypt: Honor toolchain (diff) | |
download | genkernel-f8d41285f26cf220dbc1a448639cffaf820e648b.tar.gz genkernel-f8d41285f26cf220dbc1a448639cffaf820e648b.tar.bz2 genkernel-f8d41285f26cf220dbc1a448639cffaf820e648b.zip |
strace: Honor toolchain
Signed-off-by: Thomas Deutschmann <whissi@gentoo.org>
Diffstat (limited to 'gkbuilds')
-rw-r--r-- | gkbuilds/strace.gkbuild | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gkbuilds/strace.gkbuild b/gkbuilds/strace.gkbuild index 540f6cb..62399ce 100644 --- a/gkbuilds/strace.gkbuild +++ b/gkbuilds/strace.gkbuild @@ -1,4 +1,4 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 src_configure() { @@ -11,6 +11,8 @@ src_configure() { --without-libdw ) + CC_FOR_BUILD="$(tc-getBUILD_CC)" \ + CPP_FOR_BUILD="$(tc-getBUILD_CPP)" \ gkconf "${myconf[@]}" } |