diff options
author | Sam James <sam@gentoo.org> | 2022-03-20 18:50:29 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-03-20 18:51:30 +0000 |
commit | 6ea91575a15125922782bae477b7b9c5a4de986c (patch) | |
tree | cbdf60dd17d8ca2fc75d9b8d9766b39d74d59e52 /sci-libs/xgks-pmel | |
parent | sci-libs/superlu_mt: [QA] fix tc-get* quoting (diff) | |
download | gentoo-6ea91575a15125922782bae477b7b9c5a4de986c.tar.gz gentoo-6ea91575a15125922782bae477b7b9c5a4de986c.tar.bz2 gentoo-6ea91575a15125922782bae477b7b9c5a4de986c.zip |
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@gentoo.org>
Diffstat (limited to 'sci-libs/xgks-pmel')
-rw-r--r-- | sci-libs/xgks-pmel/xgks-pmel-2.5.5.ebuild | 6 |
1 files 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 } |