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 33A9215808B for ; Sat, 19 Mar 2022 23:45:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5D2C3E08BB; Sat, 19 Mar 2022 23:45:14 +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 B056CE08BB for ; Sat, 19 Mar 2022 23:45:13 +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 F0129343211 for ; Sat, 19 Mar 2022 23:45:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A45DE31A for ; Sat, 19 Mar 2022 23:45:10 +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: <1647733299.4626183d007c90dc25b9c63195ffa7303a54b3a9.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/chuck/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/chuck/chuck-1.4.1.0.ebuild X-VCS-Directories: media-sound/chuck/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 4626183d007c90dc25b9c63195ffa7303a54b3a9 X-VCS-Branch: master Date: Sat, 19 Mar 2022 23:45:10 +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: b1651ac4-d783-4153-b532-c6e44f230ca5 X-Archives-Hash: 61112b4c6692d4c2948256edf7ca7492 commit: 4626183d007c90dc25b9c63195ffa7303a54b3a9 Author: Sam James gentoo org> AuthorDate: Sat Mar 19 23:41:39 2022 +0000 Commit: Sam James gentoo org> CommitDate: Sat Mar 19 23:41:39 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4626183d media-sound/chuck: [QA] fix tc-get* quoting This can cause build problems for e.g. 32-bit (gcc -m32 ...) Signed-off-by: Sam James gentoo.org> media-sound/chuck/chuck-1.4.1.0.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/media-sound/chuck/chuck-1.4.1.0.ebuild b/media-sound/chuck/chuck-1.4.1.0.ebuild index 7bfdf97b999c..21730ecc4a19 100644 --- a/media-sound/chuck/chuck-1.4.1.0.ebuild +++ b/media-sound/chuck/chuck-1.4.1.0.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 @@ -32,7 +32,7 @@ compile_backend() { backend=$1 pushd "${S}/src" &>/dev/null || die einfo "Compiling against ${backend}" - emake CC=$(tc-getCC) CXX=$(tc-getCXX) linux-${backend} + emake CC="$(tc-getCC)" CXX="$(tc-getCXX)" linux-${backend} mv chuck{,-${backend}} || die emake clean popd &>/dev/null || die