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 6213815808B for ; Sat, 26 Mar 2022 00:01:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E7097E0870; Sat, 26 Mar 2022 00:01:17 +0000 (UTC) Received: from smtp.gentoo.org (mail.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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4A908E086A for ; Sat, 26 Mar 2022 00:01:17 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 46F24343501 for ; Sat, 26 Mar 2022 00:01:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A05F0344 for ; Sat, 26 Mar 2022 00:01:14 +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: <1648252828.62fcf0efcbaca1a1bca3008ab81a6d1049b3726a.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/scponly/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/scponly/scponly-4.8-r7.ebuild X-VCS-Directories: net-misc/scponly/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 62fcf0efcbaca1a1bca3008ab81a6d1049b3726a X-VCS-Branch: master Date: Sat, 26 Mar 2022 00:01:14 +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: ad88e7eb-4145-474b-b0ed-ec0823dad4a2 X-Archives-Hash: 3f7d76b12edaaf8e07812d0ad89c01c5 commit: 62fcf0efcbaca1a1bca3008ab81a6d1049b3726a Author: Sam James gentoo org> AuthorDate: Fri Mar 25 23:43:09 2022 +0000 Commit: Sam James gentoo org> CommitDate: Sat Mar 26 00:00:28 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62fcf0ef net-misc/scponly: [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-misc/scponly/scponly-4.8-r7.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net-misc/scponly/scponly-4.8-r7.ebuild b/net-misc/scponly/scponly-4.8-r7.ebuild index 53455a9f74eb..db5e7ae99a4f 100644 --- a/net-misc/scponly/scponly-4.8-r7.ebuild +++ b/net-misc/scponly/scponly-4.8-r7.ebuild @@ -55,7 +55,7 @@ src_configure() { } src_compile() { - emake CC=$(tc-getCC) + emake CC="$(tc-getCC)" } src_install() {