diff options
author | Sam James <sam@gentoo.org> | 2022-03-20 00:25:31 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-03-20 00:25:31 +0000 |
commit | f5f7fb7447e9f3b2f4a1a58c030b679aac63078f (patch) | |
tree | 8c4cf620e4a9885eb673f2eab90b7ed331caac5b /dev-games/hdl_dump | |
parent | games-board/stockfish: [QA] fix tc-get* quoting (diff) | |
download | gentoo-f5f7fb7447e9f3b2f4a1a58c030b679aac63078f.tar.gz gentoo-f5f7fb7447e9f3b2f4a1a58c030b679aac63078f.tar.bz2 gentoo-f5f7fb7447e9f3b2f4a1a58c030b679aac63078f.zip |
dev-games/hdl_dump: [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 'dev-games/hdl_dump')
-rw-r--r-- | dev-games/hdl_dump/hdl_dump-0.9.2.20180722.ebuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dev-games/hdl_dump/hdl_dump-0.9.2.20180722.ebuild b/dev-games/hdl_dump/hdl_dump-0.9.2.20180722.ebuild index 63f210da390d..64b4a2647bba 100644 --- a/dev-games/hdl_dump/hdl_dump-0.9.2.20180722.ebuild +++ b/dev-games/hdl_dump/hdl_dump-0.9.2.20180722.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 @@ -30,7 +30,7 @@ src_prepare() { src_compile() { emake \ - CC=$(tc-getCC) \ + CC="$(tc-getCC)" \ RELEASE=$(usex debug no yes) \ IIN_OPTICAL_MMAP=yes } |