diff options
author | Sam James <sam@gentoo.org> | 2022-03-20 00:05:17 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-03-20 00:05:17 +0000 |
commit | f94c9dc8888486f52d6aa64985f897f776b9ed3b (patch) | |
tree | 084f6de2d5e1dbe880fd07a168f11dc4db64d928 /mail-client/mailx | |
parent | net-mail/metamail: [QA] fix tc-get* quoting (diff) | |
download | gentoo-f94c9dc8888486f52d6aa64985f897f776b9ed3b.tar.gz gentoo-f94c9dc8888486f52d6aa64985f897f776b9ed3b.tar.bz2 gentoo-f94c9dc8888486f52d6aa64985f897f776b9ed3b.zip |
mail-client/mailx: [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 'mail-client/mailx')
-rw-r--r-- | mail-client/mailx/mailx-8.1.2.20180807.ebuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mail-client/mailx/mailx-8.1.2.20180807.ebuild b/mail-client/mailx/mailx-8.1.2.20180807.ebuild index a85a025cc1fb..d542d75a55b2 100644 --- a/mail-client/mailx/mailx-8.1.2.20180807.ebuild +++ b/mail-client/mailx/mailx-8.1.2.20180807.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 @@ -37,7 +37,7 @@ src_prepare() { } src_compile() { - emake CC=$(tc-getCC) EXTRAFLAGS="${CFLAGS}" + emake CC="$(tc-getCC)" EXTRAFLAGS="${CFLAGS}" } src_install() { |