From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id CD58615808B for ; Sun, 20 Mar 2022 18:44:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 48600E088B; Sun, 20 Mar 2022 18:43:59 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id ECA02E088B for ; Sun, 20 Mar 2022 18:43:58 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1E2A134307D for ; Sun, 20 Mar 2022 18:43:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A6D3C334 for ; Sun, 20 Mar 2022 18:43:55 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1647801821.364385a3aef73b6f0fa20ff8c11b1aff44bdacc4.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/nmap/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-analyzer/nmap/nmap-7.80-r2.ebuild net-analyzer/nmap/nmap-7.91-r2.ebuild net-analyzer/nmap/nmap-7.92.ebuild net-analyzer/nmap/nmap-9999.ebuild X-VCS-Directories: net-analyzer/nmap/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 364385a3aef73b6f0fa20ff8c11b1aff44bdacc4 X-VCS-Branch: master Date: Sun, 20 Mar 2022 18:43:55 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 9be60b55-6578-4cda-aa75-d48c6b085c1a X-Archives-Hash: 615d368dde2b9719020d80b0d89ecc39 commit: 364385a3aef73b6f0fa20ff8c11b1aff44bdacc4 Author: Sam James gentoo org> AuthorDate: Sun Mar 20 18:42:23 2022 +0000 Commit: Sam James gentoo org> CommitDate: Sun Mar 20 18:43:41 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=364385a3 net-analyzer/nmap: [QA] fix tc-get* quoting This can cause build problems for e.g. 32-bit (gcc -m32 ...) Signed-off-by: Sam James gentoo.org> net-analyzer/nmap/nmap-7.80-r2.ebuild | 6 +++--- net-analyzer/nmap/nmap-7.91-r2.ebuild | 6 +++--- net-analyzer/nmap/nmap-7.92.ebuild | 4 ++-- net-analyzer/nmap/nmap-9999.ebuild | 4 ++-- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/net-analyzer/nmap/nmap-7.80-r2.ebuild b/net-analyzer/nmap/nmap-7.80-r2.ebuild index 37d6bd0196ec..1734ec441e00 100644 --- a/net-analyzer/nmap/nmap-7.80-r2.ebuild +++ b/net-analyzer/nmap/nmap-7.80-r2.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 @@ -111,8 +111,8 @@ src_compile() { done emake \ - AR=$(tc-getAR) \ - RANLIB=$(tc-getRANLIB) + AR="$(tc-getAR)" \ + RANLIB="$(tc-getRANLIB)" } src_install() { diff --git a/net-analyzer/nmap/nmap-7.91-r2.ebuild b/net-analyzer/nmap/nmap-7.91-r2.ebuild index 7beabe6e0b00..1af1818ce083 100644 --- a/net-analyzer/nmap/nmap-7.91-r2.ebuild +++ b/net-analyzer/nmap/nmap-7.91-r2.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 @@ -117,8 +117,8 @@ src_compile() { done emake \ - AR=$(tc-getAR) \ - RANLIB=$(tc-getRANLIB) + AR="$(tc-getAR)" \ + RANLIB="$(tc-getRANLIB)" } src_install() { diff --git a/net-analyzer/nmap/nmap-7.92.ebuild b/net-analyzer/nmap/nmap-7.92.ebuild index 8578d039870f..8d80c56138aa 100644 --- a/net-analyzer/nmap/nmap-7.92.ebuild +++ b/net-analyzer/nmap/nmap-7.92.ebuild @@ -116,8 +116,8 @@ src_compile() { done emake \ - AR=$(tc-getAR) \ - RANLIB=$(tc-getRANLIB) + AR="$(tc-getAR)" \ + RANLIB="$(tc-getRANLIB)" } src_install() { diff --git a/net-analyzer/nmap/nmap-9999.ebuild b/net-analyzer/nmap/nmap-9999.ebuild index e04fab825e5c..2812d6599000 100644 --- a/net-analyzer/nmap/nmap-9999.ebuild +++ b/net-analyzer/nmap/nmap-9999.ebuild @@ -117,8 +117,8 @@ src_compile() { done emake \ - AR=$(tc-getAR) \ - RANLIB=$(tc-getRANLIB) + AR="$(tc-getAR)" \ + RANLIB="$(tc-getRANLIB)" } src_install() {