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 6B7C115808B for ; Sat, 19 Mar 2022 23:39:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EB336E08BD; Sat, 19 Mar 2022 23:39:43 +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 B5992E08BB for ; Sat, 19 Mar 2022 23:39:43 +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 E1955343835 for ; Sat, 19 Mar 2022 23:39:42 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 40F27331 for ; Sat, 19 Mar 2022 23:39:40 +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: <1647733068.decc1eda51297921af4003ebf66fe1777eae794f.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-fps/eduke32/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-fps/eduke32/eduke32-20211202.9831.ebuild games-fps/eduke32/eduke32-20220204.9957.ebuild X-VCS-Directories: games-fps/eduke32/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: decc1eda51297921af4003ebf66fe1777eae794f X-VCS-Branch: master Date: Sat, 19 Mar 2022 23:39:40 +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: b3b67bbb-afc5-4beb-9f2a-a1d2d1da87b7 X-Archives-Hash: ae6b3b9994d0a491760ba781ee7b019e commit: decc1eda51297921af4003ebf66fe1777eae794f Author: Sam James gentoo org> AuthorDate: Sat Mar 19 23:37:48 2022 +0000 Commit: Sam James gentoo org> CommitDate: Sat Mar 19 23:37:48 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=decc1eda games-fps/eduke32: [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-fps/eduke32/eduke32-20211202.9831.ebuild | 8 ++++---- games-fps/eduke32/eduke32-20220204.9957.ebuild | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/games-fps/eduke32/eduke32-20211202.9831.ebuild b/games-fps/eduke32/eduke32-20211202.9831.ebuild index 514385fafcab..5381e50eb485 100644 --- a/games-fps/eduke32/eduke32-20211202.9831.ebuild +++ b/games-fps/eduke32/eduke32-20211202.9831.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 @@ -108,9 +108,9 @@ src_unpack() { src_compile() { local myemakeopts=( ALLOCACHE_AS_MALLOC=0 - AS=$(tc-getAS) - CC=$(tc-getCC) - CXX=$(tc-getCXX) + AS="$(tc-getAS)" + CC="$(tc-getCC)" + CXX="$(tc-getCXX)" CLANG=0 CPLUSPLUS=1 CUSTOMOPT="" diff --git a/games-fps/eduke32/eduke32-20220204.9957.ebuild b/games-fps/eduke32/eduke32-20220204.9957.ebuild index ed27b1dc402c..065285a52412 100644 --- a/games-fps/eduke32/eduke32-20220204.9957.ebuild +++ b/games-fps/eduke32/eduke32-20220204.9957.ebuild @@ -109,9 +109,9 @@ src_unpack() { src_compile() { local myemakeopts=( ALLOCACHE_AS_MALLOC=0 - AS=$(tc-getAS) - CC=$(tc-getCC) - CXX=$(tc-getCXX) + AS="$(tc-getAS)" + CC="$(tc-getCC)" + CXX="$(tc-getCXX)" CLANG=0 CPLUSPLUS=1 CUSTOMOPT=""