diff options
author | Sam James <sam@gentoo.org> | 2022-03-20 18:49:31 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-03-20 18:50:53 +0000 |
commit | 94cbce6f250b841d2f94e62b1b44a37a50958090 (patch) | |
tree | d2fb1ef41ca40b7f176729dfbb50be3d32e56516 /sci-biology | |
parent | sci-biology/fasta: [QA] fix tc-get* quoting (diff) | |
download | gentoo-94cbce6f250b841d2f94e62b1b44a37a50958090.tar.gz gentoo-94cbce6f250b841d2f94e62b1b44a37a50958090.tar.bz2 gentoo-94cbce6f250b841d2f94e62b1b44a37a50958090.zip |
sci-biology/glimmer: [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-biology')
-rw-r--r-- | sci-biology/glimmer/glimmer-3.02b.ebuild | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sci-biology/glimmer/glimmer-3.02b.ebuild b/sci-biology/glimmer/glimmer-3.02b.ebuild index c9332c5143a1..35bea17dd8ab 100644 --- a/sci-biology/glimmer/glimmer-3.02b.ebuild +++ b/sci-biology/glimmer/glimmer-3.02b.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 @@ -46,9 +46,9 @@ src_prepare() { src_compile() { emake \ -C src \ - CC=$(tc-getCC) \ - CXX=$(tc-getCXX) \ - AR=$(tc-getAR) \ + CC="$(tc-getCC)" \ + CXX="$(tc-getCXX)" \ + AR="$(tc-getAR)" \ CXXFLAGS="${CXXFLAGS}" \ CFLAGS="${CFLAGS}" \ LDFLAGS="${LDFLAGS}" |