commit: 6ea91575a15125922782bae477b7b9c5a4de986c
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 20 18:50:29 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Mar 20 18:51:30 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ea91575
sci-libs/xgks-pmel: [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/xgks-pmel/xgks-pmel-2.5.5.ebuild | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/sci-libs/xgks-pmel/xgks-pmel-2.5.5.ebuild
b/sci-libs/xgks-pmel/xgks-pmel-2.5.5.ebuild
index cc8aa0b44b78..9c3d8b3a73bc 100644
--- a/sci-libs/xgks-pmel/xgks-pmel-2.5.5.ebuild
+++ b/sci-libs/xgks-pmel/xgks-pmel-2.5.5.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -26,8 +26,8 @@ src_configure() {
sed -i -e "s:lib64:$(get_libdir):g" port/master.mk.in \
fontdb/Makefile.in || die
- CFLAGS=${CFLAGS} LD_X11='-L/usr/$(get_libdir) -lX11' \
- FC=$(tc-getFC) CC=$(tc-getCC) OS=linux \
+ CFLAGS="${CFLAGS}" LD_X11='-L/usr/$(get_libdir) -lX11' \
+ FC="$(tc-getFC)" CC="$(tc-getCC)" OS=linux \
./configure --prefix=/usr --exec_prefix=/usr/bin \
|| die
}