diff options
author | Thomas Deutschmann <whissi@gentoo.org> | 2020-07-14 18:12:11 +0200 |
---|---|---|
committer | Thomas Deutschmann <whissi@gentoo.org> | 2020-07-16 16:29:17 +0200 |
commit | bf863ca44a22e1aa571f69da6e95be945937eb06 (patch) | |
tree | f99a5539f849eaf8e5b52532c2fdbedcddb9dd93 /gkbuilds/xfsprogs.gkbuild | |
parent | strace: Honor toolchain (diff) | |
download | genkernel-bf863ca44a22e1aa571f69da6e95be945937eb06.tar.gz genkernel-bf863ca44a22e1aa571f69da6e95be945937eb06.tar.bz2 genkernel-bf863ca44a22e1aa571f69da6e95be945937eb06.zip |
xfsprogs: Honor toolchain
Signed-off-by: Thomas Deutschmann <whissi@gentoo.org>
Diffstat (limited to 'gkbuilds/xfsprogs.gkbuild')
-rw-r--r-- | gkbuilds/xfsprogs.gkbuild | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gkbuilds/xfsprogs.gkbuild b/gkbuilds/xfsprogs.gkbuild index 9f2c6ba2..98846874 100644 --- a/gkbuilds/xfsprogs.gkbuild +++ b/gkbuilds/xfsprogs.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_prepare() { @@ -26,6 +26,8 @@ src_configure() { --disable-scrub ) + BUILD_CC="$(tc-getBUILD_CC)" \ + BUILD_LD="$(tc-getBUILD_LD)" \ gkconf "${myconf[@]}" } |