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 8FE6715808C 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 12792E0886; Sun, 20 Mar 2022 18:43:59 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 E31A9E0886 for ; Sun, 20 Mar 2022 18:43:58 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 36BDA343088 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 91E32331 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: <1647801819.35ca60ce1f92d9f39b524e10f4d0c89d1275318b.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/openbsd-netcat/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-analyzer/openbsd-netcat/openbsd-netcat-1.190.ebuild net-analyzer/openbsd-netcat/openbsd-netcat-1.195-r1.ebuild net-analyzer/openbsd-netcat/openbsd-netcat-1.195.ebuild X-VCS-Directories: net-analyzer/openbsd-netcat/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 35ca60ce1f92d9f39b524e10f4d0c89d1275318b 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: a1917899-daa2-452f-93cb-1901767ba561 X-Archives-Hash: 38cf4601c39f9899dcaca58600095c78 commit: 35ca60ce1f92d9f39b524e10f4d0c89d1275318b Author: Sam James gentoo org> AuthorDate: Sun Mar 20 18:41:46 2022 +0000 Commit: Sam James gentoo org> CommitDate: Sun Mar 20 18:43:39 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=35ca60ce net-analyzer/openbsd-netcat: [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/openbsd-netcat/openbsd-netcat-1.190.ebuild | 2 +- net-analyzer/openbsd-netcat/openbsd-netcat-1.195-r1.ebuild | 2 +- net-analyzer/openbsd-netcat/openbsd-netcat-1.195.ebuild | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/net-analyzer/openbsd-netcat/openbsd-netcat-1.190.ebuild b/net-analyzer/openbsd-netcat/openbsd-netcat-1.190.ebuild index 859270ce857d..70a973b584c8 100644 --- a/net-analyzer/openbsd-netcat/openbsd-netcat-1.190.ebuild +++ b/net-analyzer/openbsd-netcat/openbsd-netcat-1.190.ebuild @@ -35,7 +35,7 @@ src_prepare() { } src_compile() { - emake CC=$(tc-getCC) CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" + emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" } src_install() { diff --git a/net-analyzer/openbsd-netcat/openbsd-netcat-1.195-r1.ebuild b/net-analyzer/openbsd-netcat/openbsd-netcat-1.195-r1.ebuild index 48dfecb119bd..c04edf0bb0da 100644 --- a/net-analyzer/openbsd-netcat/openbsd-netcat-1.195-r1.ebuild +++ b/net-analyzer/openbsd-netcat/openbsd-netcat-1.195-r1.ebuild @@ -41,7 +41,7 @@ src_prepare() { } src_compile() { - emake CC=$(tc-getCC) CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" + emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" } src_install() { diff --git a/net-analyzer/openbsd-netcat/openbsd-netcat-1.195.ebuild b/net-analyzer/openbsd-netcat/openbsd-netcat-1.195.ebuild index 90851a6bcac9..d82b685da2a0 100644 --- a/net-analyzer/openbsd-netcat/openbsd-netcat-1.195.ebuild +++ b/net-analyzer/openbsd-netcat/openbsd-netcat-1.195.ebuild @@ -35,7 +35,7 @@ src_prepare() { } src_compile() { - emake CC=$(tc-getCC) CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" + emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" } src_install() {