diff options
author | Sam James <sam@gentoo.org> | 2022-03-20 00:25:44 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-03-20 00:25:44 +0000 |
commit | 7f112d47129b357d5165afd216c84a089f0acd10 (patch) | |
tree | d54f948a289ffeacc0e06908a2b9444755c181a4 /games-strategy/ufoai | |
parent | dev-games/hdl_dump: [QA] fix tc-get* quoting (diff) | |
download | gentoo-7f112d47129b357d5165afd216c84a089f0acd10.tar.gz gentoo-7f112d47129b357d5165afd216c84a089f0acd10.tar.bz2 gentoo-7f112d47129b357d5165afd216c84a089f0acd10.zip |
games-strategy/ufoai: [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 'games-strategy/ufoai')
-rw-r--r-- | games-strategy/ufoai/ufoai-2.5.0_p20180603-r1.ebuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/games-strategy/ufoai/ufoai-2.5.0_p20180603-r1.ebuild b/games-strategy/ufoai/ufoai-2.5.0_p20180603-r1.ebuild index dea50098a4cb..cd7b93cf6ac2 100644 --- a/games-strategy/ufoai/ufoai-2.5.0_p20180603-r1.ebuild +++ b/games-strategy/ufoai/ufoai-2.5.0_p20180603-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=7 @@ -113,7 +113,7 @@ src_configure() { echo ./configure "${config[@]}" - CC=$(tc-getCC) CXX=$(tc-getCXX) \ + CC="$(tc-getCC)" CXX="$(tc-getCXX)" \ ./configure "${config[@]}" || die "configure failed" } |