Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/netkit-talk/
Date: Sat, 26 Mar 2022 00:01:19
Message-Id: 1648252821.e048e563ddb6d7009870285e05964577b35c0f39.sam@gentoo
1 commit: e048e563ddb6d7009870285e05964577b35c0f39
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Fri Mar 25 23:42:00 2022 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Sat Mar 26 00:00:21 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e048e563
7
8 net-misc/netkit-talk: [QA] fix tc-get* quoting
9
10 This can cause build problems for e.g. 32-bit (gcc -m32 ...)
11
12 Signed-off-by: Sam James <sam <AT> gentoo.org>
13
14 net-misc/netkit-talk/netkit-talk-0.17-r7.ebuild | 4 ++--
15 1 file changed, 2 insertions(+), 2 deletions(-)
16
17 diff --git a/net-misc/netkit-talk/netkit-talk-0.17-r7.ebuild b/net-misc/netkit-talk/netkit-talk-0.17-r7.ebuild
18 index 585a64aabeab..2afb9caf1300 100644
19 --- a/net-misc/netkit-talk/netkit-talk-0.17-r7.ebuild
20 +++ b/net-misc/netkit-talk/netkit-talk-0.17-r7.ebuild
21 @@ -1,4 +1,4 @@
22 -# Copyright 1999-2021 Gentoo Authors
23 +# Copyright 1999-2022 Gentoo Authors
24 # Distributed under the terms of the GNU General Public License v2
25
26 EAPI=7
27 @@ -34,7 +34,7 @@ src_prepare() {
28
29 src_configure() {
30 # not autotools based?
31 - ./configure --with-c-compiler=$(tc-getCC) || die
32 + ./configure --with-c-compiler="$(tc-getCC)" || die
33 }
34
35 src_compile() {