commit: 288b7fd3ad17a357dfeeaf9ab7d6e99e82f9ebce
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 20 18:49:57 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Mar 20 18:51:10 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=288b7fd3
sci-chemistry/procheck: [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-chemistry/procheck/procheck-3.5.4-r3.ebuild | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/sci-chemistry/procheck/procheck-3.5.4-r3.ebuild
b/sci-chemistry/procheck/procheck-3.5.4-r3.ebuild
index 1a700ee4110f..d7522b14f7c4 100644
--- a/sci-chemistry/procheck/procheck-3.5.4-r3.ebuild
+++ b/sci-chemistry/procheck/procheck-3.5.4-r3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@@ -40,8 +40,8 @@ PATCHES=(
src_compile() {
emake \
- F77=$(tc-getFC) \
- CC=$(tc-getCC) \
+ F77="$(tc-getFC)" \
+ CC="$(tc-getCC)" \
COPTS="${CFLAGS}" \
FOPTS="${FFLAGS} -std=legacy"
}