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 8863515808B 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 12777E087A; Sun, 20 Mar 2022 18:43:59 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 E2ADFE087A 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 3A87F3430FE 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 BA3D9335 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: <1647801823.f15b3510f60966e225b49ae6d4844d1a95c6e149.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/argus-clients/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-analyzer/argus-clients/argus-clients-3.0.8.3.ebuild X-VCS-Directories: net-analyzer/argus-clients/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: f15b3510f60966e225b49ae6d4844d1a95c6e149 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: 3d182fdf-f415-4ae4-8a4b-3ceaa796a245 X-Archives-Hash: 3636f6c45f044f19bebd0bd14fdf6938 commit: f15b3510f60966e225b49ae6d4844d1a95c6e149 Author: Sam James gentoo org> AuthorDate: Sun Mar 20 18:42:47 2022 +0000 Commit: Sam James gentoo org> CommitDate: Sun Mar 20 18:43:43 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f15b3510 net-analyzer/argus-clients: [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/argus-clients/argus-clients-3.0.8.3.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net-analyzer/argus-clients/argus-clients-3.0.8.3.ebuild b/net-analyzer/argus-clients/argus-clients-3.0.8.3.ebuild index f27f15cd9303..55425715a1ae 100644 --- a/net-analyzer/argus-clients/argus-clients-3.0.8.3.ebuild +++ b/net-analyzer/argus-clients/argus-clients-3.0.8.3.ebuild @@ -63,7 +63,7 @@ src_configure() { src_compile() { emake \ CCOPT="${CFLAGS} ${LDFLAGS}" \ - RANLIB=$(tc-getRANLIB) \ + RANLIB="$(tc-getRANLIB)" \ CURSESLIB="$( $(tc-getPKG_CONFIG) --libs ncurses)" }