diff options
author | Sam James <sam@gentoo.org> | 2022-03-20 00:04:59 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-03-20 00:04:59 +0000 |
commit | 459ded5021a8cb2b2bc19f111c89d6cf74b6bded (patch) | |
tree | c63aeb3f83d84232e2a35acff503306b50229dd2 /net-mail | |
parent | games-action/rrootage: [QA] fix tc-get* quoting (diff) | |
download | gentoo-459ded5021a8cb2b2bc19f111c89d6cf74b6bded.tar.gz gentoo-459ded5021a8cb2b2bc19f111c89d6cf74b6bded.tar.bz2 gentoo-459ded5021a8cb2b2bc19f111c89d6cf74b6bded.zip |
net-mail/metamail: [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')
-rw-r--r-- | net-mail/metamail/metamail-2.7.53.3-r3.ebuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net-mail/metamail/metamail-2.7.53.3-r3.ebuild b/net-mail/metamail/metamail-2.7.53.3-r3.ebuild index 089bfeab2e43..1d4ff4fdfb68 100644 --- a/net-mail/metamail/metamail-2.7.53.3-r3.ebuild +++ b/net-mail/metamail/metamail-2.7.53.3-r3.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 @@ -58,7 +58,7 @@ src_configure() { } src_compile() { - emake CC=$(tc-getCC) CFLAGS="${CFLAGS}" + emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" } src_install() { |