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 B39E915808B for ; Sun, 20 Mar 2022 00:06:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EEFA2E089A; Sun, 20 Mar 2022 00:05:57 +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 D07C2E089A for ; Sun, 20 Mar 2022 00:05:57 +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 DF2DD34354A for ; Sun, 20 Mar 2022 00:05:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2D67233A for ; Sun, 20 Mar 2022 00:05:54 +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: <1647734582.9ffce0884d121488f4ed95729bddca84a47b2126.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-action/rrootage/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-action/rrootage/rrootage-0.23a-r3.ebuild X-VCS-Directories: games-action/rrootage/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 9ffce0884d121488f4ed95729bddca84a47b2126 X-VCS-Branch: master Date: Sun, 20 Mar 2022 00:05:54 +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: 93882b35-a235-4d2a-8441-ad86501c0b61 X-Archives-Hash: 06aa48451f2411a5b8d09576eaa620d1 commit: 9ffce0884d121488f4ed95729bddca84a47b2126 Author: Sam James gentoo org> AuthorDate: Sun Mar 20 00:03:02 2022 +0000 Commit: Sam James gentoo org> CommitDate: Sun Mar 20 00:03:02 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ffce088 games-action/rrootage: [QA] fix tc-get* quoting This can cause build problems for e.g. 32-bit (gcc -m32 ...) Signed-off-by: Sam James gentoo.org> games-action/rrootage/rrootage-0.23a-r3.ebuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/games-action/rrootage/rrootage-0.23a-r3.ebuild b/games-action/rrootage/rrootage-0.23a-r3.ebuild index 53505f01f287..83eed8878133 100644 --- a/games-action/rrootage/rrootage-0.23a-r3.ebuild +++ b/games-action/rrootage/rrootage-0.23a-r3.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 @@ -50,8 +50,8 @@ src_prepare() { src_compile() { emake \ - CC=$(tc-getCC) \ - CXX=$(tc-getCXX) \ + CC="$(tc-getCC)" \ + CXX="$(tc-getCXX)" \ MORE_CFLAGS="-DLINUX ${CFLAGS}" \ MORE_CXXFLAGS="-DLINUX ${CXXFLAGS}" }