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/putty/
Date: Sat, 26 Mar 2022 00:01:18
Message-Id: 1648252823.54f1e2800916956e95de088745beb300025e6f78.sam@gentoo
1 commit: 54f1e2800916956e95de088745beb300025e6f78
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Fri Mar 25 23:42:21 2022 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Sat Mar 26 00:00:23 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=54f1e280
7
8 net-misc/putty: [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/putty/putty-0.76.ebuild | 4 ++--
15 net-misc/putty/putty-9999.ebuild | 4 ++--
16 2 files changed, 4 insertions(+), 4 deletions(-)
17
18 diff --git a/net-misc/putty/putty-0.76.ebuild b/net-misc/putty/putty-0.76.ebuild
19 index 62ac436ba4c6..c793525eff4f 100644
20 --- a/net-misc/putty/putty-0.76.ebuild
21 +++ b/net-misc/putty/putty-0.76.ebuild
22 @@ -1,4 +1,4 @@
23 -# Copyright 1999-2021 Gentoo Authors
24 +# Copyright 1999-2022 Gentoo Authors
25 # Distributed under the terms of the GNU General Public License v2
26
27 EAPI=7
28 @@ -57,7 +57,7 @@ src_configure() {
29
30 src_compile() {
31 emake -C "${S}"/doc
32 - emake -C "${S}"/unix AR=$(tc-getAR) $(usex ipv6 '' COMPAT=-DNO_IPV6)
33 + emake -C "${S}"/unix AR="$(tc-getAR)" $(usex ipv6 '' COMPAT=-DNO_IPV6)
34 }
35
36 src_test() {
37
38 diff --git a/net-misc/putty/putty-9999.ebuild b/net-misc/putty/putty-9999.ebuild
39 index 68b02e9dd70b..97dbfaea150f 100644
40 --- a/net-misc/putty/putty-9999.ebuild
41 +++ b/net-misc/putty/putty-9999.ebuild
42 @@ -1,4 +1,4 @@
43 -# Copyright 1999-2021 Gentoo Authors
44 +# Copyright 1999-2022 Gentoo Authors
45 # Distributed under the terms of the GNU General Public License v2
46
47 EAPI=7
48 @@ -64,7 +64,7 @@ src_configure() {
49
50 src_compile() {
51 emake -C "${S}"/doc
52 - emake -C "${S}"/unix AR=$(tc-getAR) $(usex ipv6 '' COMPAT=-DNO_IPV6)
53 + emake -C "${S}"/unix AR="$(tc-getAR)" $(usex ipv6 '' COMPAT=-DNO_IPV6)
54 }
55
56 src_test() {