Gentoo Archives: gentoo-commits

From: Alon Bar-Lev <alonbl@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libgpg-error/
Date: Wed, 03 Jan 2018 19:28:17
Message-Id: 1515007594.35cb4fde12ccb0d423d7b3c74c8539240437848f.alonbl@gentoo
1 commit: 35cb4fde12ccb0d423d7b3c74c8539240437848f
2 Author: Karel Kočí <cynerd <AT> email <DOT> cz>
3 AuthorDate: Wed Jan 3 17:23:24 2018 +0000
4 Commit: Alon Bar-Lev <alonbl <AT> gentoo <DOT> org>
5 CommitDate: Wed Jan 3 19:26:34 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=35cb4fde
7
8 dev-libs/libgpg-error: fix build when BUILD_CC contains spaces
9
10 Filled compiler can be more than just compiler executable name. If 32bit
11 abi is enable the -m32 is passed with it. Before this the -m32 was
12 passed to configure script and it failed with error (because it clearly
13 doesn't support -m32 switch).
14
15 Bug: https://bugs.gentoo.org/643274
16
17 dev-libs/libgpg-error/libgpg-error-1.27-r1.ebuild | 2 +-
18 1 file changed, 1 insertion(+), 1 deletion(-)
19
20 diff --git a/dev-libs/libgpg-error/libgpg-error-1.27-r1.ebuild b/dev-libs/libgpg-error/libgpg-error-1.27-r1.ebuild
21 index e773110e7e9..f074e8a58ca 100644
22 --- a/dev-libs/libgpg-error/libgpg-error-1.27-r1.ebuild
23 +++ b/dev-libs/libgpg-error/libgpg-error-1.27-r1.ebuild
24 @@ -37,7 +37,7 @@ src_prepare() {
25
26 multilib_src_configure() {
27 ECONF_SOURCE="${S}" econf \
28 - CC_FOR_BUILD=$(tc-getBUILD_CC) \
29 + CC_FOR_BUILD="$(tc-getBUILD_CC)" \
30 --enable-threads \
31 $(use_enable nls) \
32 $(use_enable static-libs static) \