commit: 94cbce6f250b841d2f94e62b1b44a37a50958090
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 20 18:49:31 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Mar 20 18:50:53 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=94cbce6f
sci-biology/glimmer: [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>
sci-biology/glimmer/glimmer-3.02b.ebuild | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/sci-biology/glimmer/glimmer-3.02b.ebuild
b/sci-biology/glimmer/glimmer-3.02b.ebuild
index c9332c5143a1..35bea17dd8ab 100644
--- a/sci-biology/glimmer/glimmer-3.02b.ebuild
+++ b/sci-biology/glimmer/glimmer-3.02b.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
@@ -46,9 +46,9 @@ src_prepare() {
src_compile() {
emake \
-C src \
- CC=$(tc-getCC) \
- CXX=$(tc-getCXX) \
- AR=$(tc-getAR) \
+ CC="$(tc-getCC)" \
+ CXX="$(tc-getCXX)" \
+ AR="$(tc-getAR)" \
CXXFLAGS="${CXXFLAGS}" \
CFLAGS="${CFLAGS}" \
LDFLAGS="${LDFLAGS}"