diff options
author | Sam James <sam@gentoo.org> | 2022-03-20 18:49:38 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-03-20 18:50:57 +0000 |
commit | 7761f837e81d76fa9d1637c4d6808e1a88f45f82 (patch) | |
tree | 1468c6cc0c50ca5d854b97146a21dc63bc5254a4 /sci-biology | |
parent | sci-biology/mosaik: [QA] fix tc-get* quoting (diff) | |
download | gentoo-7761f837e81d76fa9d1637c4d6808e1a88f45f82.tar.gz gentoo-7761f837e81d76fa9d1637c4d6808e1a88f45f82.tar.bz2 gentoo-7761f837e81d76fa9d1637c4d6808e1a88f45f82.zip |
sci-biology/mrbayes: [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/mrbayes/mrbayes-3.1.2-r2.ebuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sci-biology/mrbayes/mrbayes-3.1.2-r2.ebuild b/sci-biology/mrbayes/mrbayes-3.1.2-r2.ebuild index cee9e0f2d286..57c39ea21a94 100644 --- a/sci-biology/mrbayes/mrbayes-3.1.2-r2.ebuild +++ b/sci-biology/mrbayes/mrbayes-3.1.2-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=8 @@ -44,7 +44,7 @@ src_compile() { if use mpi; then mycc=mpicc else - mycc=$(tc-getCC) + mycc="$(tc-getCC)" fi use mpi && myconf="MPI=yes" |