diff options
author | Sam James <sam@gentoo.org> | 2022-03-20 00:07:59 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-03-20 00:07:59 +0000 |
commit | cdde21cea96768f1d86bc82fd741948631a1bc1c (patch) | |
tree | 73b9c5e97d06425a8ccada7343960e13fb77e168 /net-dns | |
parent | net-wireless/airtraf: [QA] fix tc-get* quoting (diff) | |
download | gentoo-cdde21cea96768f1d86bc82fd741948631a1bc1c.tar.gz gentoo-cdde21cea96768f1d86bc82fd741948631a1bc1c.tar.bz2 gentoo-cdde21cea96768f1d86bc82fd741948631a1bc1c.zip |
net-dns/mdns-repeater: [QA] fix tc-get* quoting
This can cause build problems for e.g. 32-bit (gcc -m32 ...)
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'net-dns')
-rw-r--r-- | net-dns/mdns-repeater/mdns-repeater-1.11.ebuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net-dns/mdns-repeater/mdns-repeater-1.11.ebuild b/net-dns/mdns-repeater/mdns-repeater-1.11.ebuild index 70e66393f0c6..058c15a6ce2b 100644 --- a/net-dns/mdns-repeater/mdns-repeater-1.11.ebuild +++ b/net-dns/mdns-repeater/mdns-repeater-1.11.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -18,7 +18,7 @@ PATCHES=( ) src_compile() { - emake HGVERSION="${PV}" CC=$(tc-getCC) + emake HGVERSION="${PV}" CC="$(tc-getCC)" } src_install() { |