diff options
author | Sam James <sam@gentoo.org> | 2022-03-20 00:13:37 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-03-20 00:13:37 +0000 |
commit | 43e4662d4c0ac31555331211ae9bf048b27af28f (patch) | |
tree | 1329c46bc2a68740e19086d4d7989a4f26b93d40 /x11-misc/spnavcfg | |
parent | x11-misc/sent: [QA] fix tc-get* quoting (diff) | |
download | gentoo-43e4662d4c0ac31555331211ae9bf048b27af28f.tar.gz gentoo-43e4662d4c0ac31555331211ae9bf048b27af28f.tar.bz2 gentoo-43e4662d4c0ac31555331211ae9bf048b27af28f.zip |
x11-misc/spnavcfg: [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 'x11-misc/spnavcfg')
-rw-r--r-- | x11-misc/spnavcfg/spnavcfg-0.3.1.ebuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/x11-misc/spnavcfg/spnavcfg-0.3.1.ebuild b/x11-misc/spnavcfg/spnavcfg-0.3.1.ebuild index ae66b2298782..3cec1650f544 100644 --- a/x11-misc/spnavcfg/spnavcfg-0.3.1.ebuild +++ b/x11-misc/spnavcfg/spnavcfg-0.3.1.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=7 @@ -25,5 +25,5 @@ src_configure() { } src_compile() { - emake CC=$(tc-getCC) + emake CC="$(tc-getCC)" } |