diff options
author | Sam James <sam@gentoo.org> | 2022-03-20 18:49:47 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-03-20 18:51:04 +0000 |
commit | d6f8919b817dee2b8cd5485525a81eb7e11267a9 (patch) | |
tree | bba7fb638853f069e18803a058b3937be412ba99 /sci-chemistry/moldy | |
parent | sci-chemistry/gperiodic: [QA] fix tc-get* quoting (diff) | |
download | gentoo-d6f8919b817dee2b8cd5485525a81eb7e11267a9.tar.gz gentoo-d6f8919b817dee2b8cd5485525a81eb7e11267a9.tar.bz2 gentoo-d6f8919b817dee2b8cd5485525a81eb7e11267a9.zip |
sci-chemistry/moldy: [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/moldy')
-rw-r--r-- | sci-chemistry/moldy/moldy-2.16e-r2.ebuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sci-chemistry/moldy/moldy-2.16e-r2.ebuild b/sci-chemistry/moldy/moldy-2.16e-r2.ebuild index 2d49fa32d42e..e0c114cdbb87 100644 --- a/sci-chemistry/moldy/moldy-2.16e-r2.ebuild +++ b/sci-chemistry/moldy/moldy-2.16e-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=7 @@ -42,7 +42,7 @@ src_configure() { OPT="${CFLAGS}" \ OPT2="${CFLAGS} ${CFLAGS_OPT}" \ - CC=$(tc-getCC) \ + CC="$(tc-getCC)" \ econf } |