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 415C215808B for ; Sun, 20 Mar 2022 00:26:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2D190E08CD; Sun, 20 Mar 2022 00:26:23 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 132ECE08DD for ; Sun, 20 Mar 2022 00:26:23 +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 501BE342F0A for ; Sun, 20 Mar 2022 00:26:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AF017330 for ; Sun, 20 Mar 2022 00:26:20 +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: <1647735931.f5f7fb7447e9f3b2f4a1a58c030b679aac63078f.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-games/hdl_dump/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-games/hdl_dump/hdl_dump-0.9.2.20180722.ebuild X-VCS-Directories: dev-games/hdl_dump/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: f5f7fb7447e9f3b2f4a1a58c030b679aac63078f X-VCS-Branch: master Date: Sun, 20 Mar 2022 00:26:20 +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: c5dbfe5f-1999-4f86-a33f-365113f18a61 X-Archives-Hash: f6e2e176f5602b3b1ddaced4eb83577a commit: f5f7fb7447e9f3b2f4a1a58c030b679aac63078f Author: Sam James gentoo org> AuthorDate: Sun Mar 20 00:25:31 2022 +0000 Commit: Sam James gentoo org> CommitDate: Sun Mar 20 00:25:31 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f5f7fb74 dev-games/hdl_dump: [QA] fix tc-get* quoting This can cause build problems for e.g. 32-bit (gcc -m32 ...) Signed-off-by: Sam James gentoo.org> dev-games/hdl_dump/hdl_dump-0.9.2.20180722.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-games/hdl_dump/hdl_dump-0.9.2.20180722.ebuild b/dev-games/hdl_dump/hdl_dump-0.9.2.20180722.ebuild index 63f210da390d..64b4a2647bba 100644 --- a/dev-games/hdl_dump/hdl_dump-0.9.2.20180722.ebuild +++ b/dev-games/hdl_dump/hdl_dump-0.9.2.20180722.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 @@ -30,7 +30,7 @@ src_prepare() { src_compile() { emake \ - CC=$(tc-getCC) \ + CC="$(tc-getCC)" \ RELEASE=$(usex debug no yes) \ IIN_OPTICAL_MMAP=yes }