commit: d6f8919b817dee2b8cd5485525a81eb7e11267a9
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 20 18:49:47 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Mar 20 18:51:04 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d6f8919b
sci-chemistry/moldy: [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/moldy/moldy-2.16e-r2.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sci-chemistry/moldy/moldy-2.16e-r2.ebuild
b/sci-chemistry/moldy/moldy-2.16e-r2.ebuild
index 2d49fa32d42e..e0c114cdbb87 100644
--- a/sci-chemistry/moldy/moldy-2.16e-r2.ebuild
+++ b/sci-chemistry/moldy/moldy-2.16e-r2.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
@@ -42,7 +42,7 @@ src_configure() {
OPT="${CFLAGS}" \
OPT2="${CFLAGS} ${CFLAGS_OPT}" \
- CC=$(tc-getCC) \
+ CC="$(tc-getCC)" \
econf
}