commit: be2531a1ee938cb48182fdfb038ba77be4d20952
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 20 00:30:14 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Mar 20 00:30:14 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be2531a1
mail-client/alpine: [QA] fix tc-get* quoting
This can cause build problems for e.g. 32-bit (gcc -m32 ...)
Signed-off-by: Sam James <sam <AT> gentoo.org>
mail-client/alpine/alpine-2.25.ebuild | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/mail-client/alpine/alpine-2.25.ebuild
b/mail-client/alpine/alpine-2.25.ebuild
index 3beb218d42eb..f2be4843fa02 100644
--- a/mail-client/alpine/alpine-2.25.ebuild
+++ b/mail-client/alpine/alpine-2.25.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=8
@@ -39,7 +39,7 @@ src_prepare() {
use chappa && eapply "${WORKDIR}/${CHAPPA_PATCH_NAME}"
eautoreconf
tc-export CC RANLIB AR
- export CC_FOR_BUILD=$(tc-getBUILD_CC)
+ export CC_FOR_BUILD="$(tc-getBUILD_CC)"
}
src_configure() {
@@ -69,7 +69,7 @@ src_configure() {
}
src_compile() {
- emake -j1 AR=$(tc-getAR)
+ emake -j1 AR="$(tc-getAR)"
}
src_install() {