diff options
author | Sam James <sam@gentoo.org> | 2022-03-20 00:14:29 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-03-20 00:14:29 +0000 |
commit | 7afe9d2889b85c9ebf6f8b58b4322e91c0fa136b (patch) | |
tree | 32cdb6296942fcc56c86a2d28d5488c29a00cb10 /x11-misc/xkbset | |
parent | x11-misc/tabbed: [QA] fix tc-get* quoting (diff) | |
download | gentoo-7afe9d2889b85c9ebf6f8b58b4322e91c0fa136b.tar.gz gentoo-7afe9d2889b85c9ebf6f8b58b4322e91c0fa136b.tar.bz2 gentoo-7afe9d2889b85c9ebf6f8b58b4322e91c0fa136b.zip |
x11-misc/xkbset: [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/xkbset')
-rw-r--r-- | x11-misc/xkbset/xkbset-0.5_p7_p1.ebuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/x11-misc/xkbset/xkbset-0.5_p7_p1.ebuild b/x11-misc/xkbset/xkbset-0.5_p7_p1.ebuild index 47ac617ee117..125b8f843a53 100644 --- a/x11-misc/xkbset/xkbset-0.5_p7_p1.ebuild +++ b/x11-misc/xkbset/xkbset-0.5_p7_p1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -38,7 +38,7 @@ PATCHES=( ) src_compile() { - emake CC=$(tc-getCC) INC_PATH= LIB_PATH= + emake CC="$(tc-getCC)" INC_PATH= LIB_PATH= } src_install() { |