diff options
author | Sam James <sam@gentoo.org> | 2022-03-20 00:13:47 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-03-20 00:13:47 +0000 |
commit | 2c3486ba96b2d858a398274f56b862c2e04b78a9 (patch) | |
tree | 0e6bde5719fb3e56d953dceb98af003b95c9dfe4 /x11-misc | |
parent | x11-misc/spnavcfg: [QA] fix tc-get* quoting (diff) | |
download | gentoo-2c3486ba96b2d858a398274f56b862c2e04b78a9.tar.gz gentoo-2c3486ba96b2d858a398274f56b862c2e04b78a9.tar.bz2 gentoo-2c3486ba96b2d858a398274f56b862c2e04b78a9.zip |
x11-misc/xplanet: [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')
-rw-r--r-- | x11-misc/xplanet/xplanet-1.3.1-r2.ebuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/x11-misc/xplanet/xplanet-1.3.1-r2.ebuild b/x11-misc/xplanet/xplanet-1.3.1-r2.ebuild index 581d092126e2..c557e893a087 100644 --- a/x11-misc/xplanet/xplanet-1.3.1-r2.ebuild +++ b/x11-misc/xplanet/xplanet-1.3.1-r2.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 @@ -69,5 +69,5 @@ src_configure() { } src_compile() { - emake AR=$(tc-getAR) + emake AR="$(tc-getAR)" } |