commit: a4e2c9c3ebb7b2e4e735698905c0907db254803c
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 20 18:50:10 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Mar 20 18:51:18 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a4e2c9c3
sci-libs/cqrlib: [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-libs/cqrlib/cqrlib-1.1.3.ebuild | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/sci-libs/cqrlib/cqrlib-1.1.3.ebuild
b/sci-libs/cqrlib/cqrlib-1.1.3.ebuild
index d43706733c17..b6f66281567c 100644
--- a/sci-libs/cqrlib/cqrlib-1.1.3.ebuild
+++ b/sci-libs/cqrlib/cqrlib-1.1.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@@ -35,8 +35,8 @@ src_prepare() {
src_compile() {
emake \
- CC=$(tc-getCC) \
- CXX=$(tc-getCXX) \
+ CC="$(tc-getCC)" \
+ CXX="$(tc-getCXX)" \
CFLAGS="${CFLAGS}" \
CPPFLAGS="${CXXFLAGS} -DCQR_NOCCODE=1" \
all
@@ -44,8 +44,8 @@ src_compile() {
src_test() {
emake -j1 \
- CC=$(tc-getCC) \
- CXX=$(tc-getCXX) \
+ CC="$(tc-getCC)" \
+ CXX="$(tc-getCXX)" \
CFLAGS="${CFLAGS}" \
tests
}