diff options
author | Sam James <sam@gentoo.org> | 2022-03-19 23:41:57 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-03-19 23:41:57 +0000 |
commit | 560eef716678490a8a4a67afa4803cb2b34f719a (patch) | |
tree | 63c5780392bf7469b62ac954e548a0c95dfd5361 /net-mail/popa3d | |
parent | media-sound/chuck: [QA] fix tc-get* quoting (diff) | |
download | gentoo-560eef716678490a8a4a67afa4803cb2b34f719a.tar.gz gentoo-560eef716678490a8a4a67afa4803cb2b34f719a.tar.bz2 gentoo-560eef716678490a8a4a67afa4803cb2b34f719a.zip |
net-mail/popa3d: [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 'net-mail/popa3d')
-rw-r--r-- | net-mail/popa3d/popa3d-1.0.2-r2.ebuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net-mail/popa3d/popa3d-1.0.2-r2.ebuild b/net-mail/popa3d/popa3d-1.0.2-r2.ebuild index 47383afa0c2f..4cb433f446ee 100644 --- a/net-mail/popa3d/popa3d-1.0.2-r2.ebuild +++ b/net-mail/popa3d/popa3d-1.0.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=7 @@ -156,7 +156,7 @@ src_compile() { emake LIBS="${LIBS} -lcrypt" \ CFLAGS="${CFLAGS}" \ LDFLAGS="${LDFLAGS}" \ - CC=$(tc-getCC) + CC="$(tc-getCC)" } src_install() { |