diff options
author | Sam James <sam@gentoo.org> | 2022-03-20 18:49:44 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-03-20 18:51:01 +0000 |
commit | 388616e6c095680bbf3480bfd076a2c34ba67dd5 (patch) | |
tree | 95733205ce88de23c6291bdeaffe3273c2d86907 /sci-chemistry | |
parent | sci-biology/plink: [QA] fix tc-get* quoting (diff) | |
download | gentoo-388616e6c095680bbf3480bfd076a2c34ba67dd5.tar.gz gentoo-388616e6c095680bbf3480bfd076a2c34ba67dd5.tar.bz2 gentoo-388616e6c095680bbf3480bfd076a2c34ba67dd5.zip |
sci-chemistry/gperiodic: [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-chemistry')
-rw-r--r-- | sci-chemistry/gperiodic/gperiodic-3.0.3.ebuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sci-chemistry/gperiodic/gperiodic-3.0.3.ebuild b/sci-chemistry/gperiodic/gperiodic-3.0.3.ebuild index 2ffd7a303310..f4f87a9e8395 100644 --- a/sci-chemistry/gperiodic/gperiodic-3.0.3.ebuild +++ b/sci-chemistry/gperiodic/gperiodic-3.0.3.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -27,7 +27,7 @@ src_compile() { emake \ CFLAGS="${CFLAGS}" \ LDFLAGS="${LDFLAGS}" \ - CC=$(tc-getCC) "enable_nls=$(usex nls 1 0)" + CC="$(tc-getCC)" "enable_nls=$(usex nls 1 0)" } src_install() { |