commit: 555ad0b5fda1562db610983fc1b90f63c5f85971
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 20 00:02:46 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Mar 20 00:02:46 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=555ad0b5
games-arcade/frozen-bubble: [QA] fix tc-get* quoting
This can cause build problems for e.g. 32-bit (gcc -m32 ...)
Signed-off-by: Sam James <sam <AT> gentoo.org>
games-arcade/frozen-bubble/frozen-bubble-2.2.1_beta1-r1.ebuild | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/games-arcade/frozen-bubble/frozen-bubble-2.2.1_beta1-r1.ebuild
b/games-arcade/frozen-bubble/frozen-bubble-2.2.1_beta1-r1.ebuild
index 9315ab5159ba..dfa261124fcc 100644
--- a/games-arcade/frozen-bubble/frozen-bubble-2.2.1_beta1-r1.ebuild
+++ b/games-arcade/frozen-bubble/frozen-bubble-2.2.1_beta1-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@@ -50,11 +50,11 @@ src_prepare() {
}
src_configure() {
- LD=$(tc-getCC) perl-module_src_configure
+ LD="$(tc-getCC)" perl-module_src_configure
}
src_compile() {
- LD=$(tc-getCC) perl-module_src_compile
+ LD="$(tc-getCC)" perl-module_src_compile
}
src_install() {