diff options
author | Sam James <sam@gentoo.org> | 2022-03-20 00:25:13 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-03-20 00:25:13 +0000 |
commit | 9c2a341fbbc3fa0f15b48c0c49b4fed99e10ad71 (patch) | |
tree | d027aea37ecf3561596d0e0b4ff77e2460f83d86 /games-board/stockfish/stockfish-14.1.ebuild | |
parent | sys-devel/slibtool: [QA] fix tc-get* quoting (diff) | |
download | gentoo-9c2a341fbbc3fa0f15b48c0c49b4fed99e10ad71.tar.gz gentoo-9c2a341fbbc3fa0f15b48c0c49b4fed99e10ad71.tar.bz2 gentoo-9c2a341fbbc3fa0f15b48c0c49b4fed99e10ad71.zip |
games-board/stockfish: [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-board/stockfish/stockfish-14.1.ebuild')
-rw-r--r-- | games-board/stockfish/stockfish-14.1.ebuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/games-board/stockfish/stockfish-14.1.ebuild b/games-board/stockfish/stockfish-14.1.ebuild index 95f30e5ff4b6..2ccc74178557 100644 --- a/games-board/stockfish/stockfish-14.1.ebuild +++ b/games-board/stockfish/stockfish-14.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 @@ -62,8 +62,8 @@ src_compile() { # COMPILER to support Travis CI and we abuse it to make sure that we # build with our compiler of choice. emake all ARCH="${my_arch}" \ - COMP=$(tc-getCXX) \ - COMPILER=$(tc-getCXX) \ + COMP="$(tc-getCXX)" \ + COMPILER="$(tc-getCXX)" \ debug=$(usex debug "yes" "no") \ optimize=$(usex optimize "yes" "no") } |