diff options
author | Sam James <sam@gentoo.org> | 2022-03-25 23:42:21 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-03-26 00:00:23 +0000 |
commit | 54f1e2800916956e95de088745beb300025e6f78 (patch) | |
tree | 63246a91464a304fae3b2ac3684025f347a2b543 /net-misc | |
parent | net-misc/netkit-talk: [QA] fix tc-get* quoting (diff) | |
download | gentoo-54f1e2800916956e95de088745beb300025e6f78.tar.gz gentoo-54f1e2800916956e95de088745beb300025e6f78.tar.bz2 gentoo-54f1e2800916956e95de088745beb300025e6f78.zip |
net-misc/putty: [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 'net-misc')
-rw-r--r-- | net-misc/putty/putty-0.76.ebuild | 4 | ||||
-rw-r--r-- | net-misc/putty/putty-9999.ebuild | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/net-misc/putty/putty-0.76.ebuild b/net-misc/putty/putty-0.76.ebuild index 62ac436ba4c6..c793525eff4f 100644 --- a/net-misc/putty/putty-0.76.ebuild +++ b/net-misc/putty/putty-0.76.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 @@ -57,7 +57,7 @@ src_configure() { src_compile() { emake -C "${S}"/doc - emake -C "${S}"/unix AR=$(tc-getAR) $(usex ipv6 '' COMPAT=-DNO_IPV6) + emake -C "${S}"/unix AR="$(tc-getAR)" $(usex ipv6 '' COMPAT=-DNO_IPV6) } src_test() { diff --git a/net-misc/putty/putty-9999.ebuild b/net-misc/putty/putty-9999.ebuild index 68b02e9dd70b..97dbfaea150f 100644 --- a/net-misc/putty/putty-9999.ebuild +++ b/net-misc/putty/putty-9999.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 @@ -64,7 +64,7 @@ src_configure() { src_compile() { emake -C "${S}"/doc - emake -C "${S}"/unix AR=$(tc-getAR) $(usex ipv6 '' COMPAT=-DNO_IPV6) + emake -C "${S}"/unix AR="$(tc-getAR)" $(usex ipv6 '' COMPAT=-DNO_IPV6) } src_test() { |