diff options
author | Sam James <sam@gentoo.org> | 2022-03-20 00:15:57 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-03-20 00:15:57 +0000 |
commit | b6e02c5af818e62651b2e19810b249a0d7aaa820 (patch) | |
tree | 323c73f3ddd15e58f5bd8af0b1ca96073475adc7 /x11-plugins | |
parent | x11-plugins/asmem: [QA] fix tc-get* quoting (diff) | |
download | gentoo-b6e02c5af818e62651b2e19810b249a0d7aaa820.tar.gz gentoo-b6e02c5af818e62651b2e19810b249a0d7aaa820.tar.bz2 gentoo-b6e02c5af818e62651b2e19810b249a0d7aaa820.zip |
x11-plugins/gkrellstock: [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-plugins')
-rw-r--r-- | x11-plugins/gkrellstock/gkrellstock-0.5.1-r1.ebuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/x11-plugins/gkrellstock/gkrellstock-0.5.1-r1.ebuild b/x11-plugins/gkrellstock/gkrellstock-0.5.1-r1.ebuild index 374d957180b7..452543dd2dc6 100644 --- a/x11-plugins/gkrellstock/gkrellstock-0.5.1-r1.ebuild +++ b/x11-plugins/gkrellstock/gkrellstock-0.5.1-r1.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=6 @@ -32,7 +32,7 @@ src_configure() { } src_compile() { - emake CC=$(tc-getCC) + emake CC="$(tc-getCC)" } src_install() { |