diff options
author | Sam James <sam@gentoo.org> | 2022-03-20 00:31:18 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-03-20 00:31:18 +0000 |
commit | c6c241d3c499ac3668ee2d416c5c3d5b36b125e3 (patch) | |
tree | da9f970058f1e79b81ba3cae047a13d7708c6770 /net-wireless/rfkill/rfkill-1.0.ebuild | |
parent | mail-client/alpine: [QA] fix tc-get* quoting (diff) | |
download | gentoo-c6c241d3c499ac3668ee2d416c5c3d5b36b125e3.tar.gz gentoo-c6c241d3c499ac3668ee2d416c5c3d5b36b125e3.tar.bz2 gentoo-c6c241d3c499ac3668ee2d416c5c3d5b36b125e3.zip |
net-wireless/rfkill: [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-wireless/rfkill/rfkill-1.0.ebuild')
-rw-r--r-- | net-wireless/rfkill/rfkill-1.0.ebuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net-wireless/rfkill/rfkill-1.0.ebuild b/net-wireless/rfkill/rfkill-1.0.ebuild index 2dcc85799b0b..ab501bd65735 100644 --- a/net-wireless/rfkill/rfkill-1.0.ebuild +++ b/net-wireless/rfkill/rfkill-1.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -23,7 +23,7 @@ src_prepare() { } src_compile() { - emake CC=$(tc-getCC) LD=$(tc-getLD) V=1 + emake CC="$(tc-getCC)" LD="$(tc-getLD)" V=1 } src_install() { |