diff options
author | Sam James <sam@gentoo.org> | 2022-03-20 18:49:41 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-03-20 18:50:59 +0000 |
commit | d781456f57fcaeec251e9adfc5b3bbce087f6410 (patch) | |
tree | b2bacccdf97ec58ab5ffd0dbcc13005ebecd3c4c /sci-biology | |
parent | sci-biology/mrbayes: [QA] fix tc-get* quoting (diff) | |
download | gentoo-d781456f57fcaeec251e9adfc5b3bbce087f6410.tar.gz gentoo-d781456f57fcaeec251e9adfc5b3bbce087f6410.tar.bz2 gentoo-d781456f57fcaeec251e9adfc5b3bbce087f6410.zip |
sci-biology/plink: [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/plink/plink-1.90_pre140514.ebuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sci-biology/plink/plink-1.90_pre140514.ebuild b/sci-biology/plink/plink-1.90_pre140514.ebuild index 2595c3ab7983..6361d78a734e 100644 --- a/sci-biology/plink/plink-1.90_pre140514.ebuild +++ b/sci-biology/plink/plink-1.90_pre140514.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=8 @@ -45,7 +45,7 @@ src_prepare() { src_compile() { emake \ - CXX=$(tc-getCXX) \ + CXX="$(tc-getCXX)" \ CFLAGS="${CFLAGS}" \ LDFLAGS="${LDFLAGS}" \ ZLIB="$($(tc-getPKG_CONFIG) --libs zlib)" \ |