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 F238915808B for ; Sat, 19 Mar 2022 23:39:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DA6CEE0898; Sat, 19 Mar 2022 23:39:42 +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 B625EE0898 for ; Sat, 19 Mar 2022 23:39:42 +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 62F7834382E for ; Sat, 19 Mar 2022 23:39:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0279832E 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: <1647732932.b70dea2a4e00f4e90fd2893b3832674f4c799c58.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/urt/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/urt/urt-3.1b-r3.ebuild X-VCS-Directories: media-libs/urt/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: b70dea2a4e00f4e90fd2893b3832674f4c799c58 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: 212e8176-93f9-452b-a796-fa6d52b50ecc X-Archives-Hash: a16eafee0e090735d53e50d76df75930 commit: b70dea2a4e00f4e90fd2893b3832674f4c799c58 Author: Sam James gentoo org> AuthorDate: Sat Mar 19 23:35:32 2022 +0000 Commit: Sam James gentoo org> CommitDate: Sat Mar 19 23:35:32 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b70dea2a media-libs/urt: [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-libs/urt/urt-3.1b-r3.ebuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/media-libs/urt/urt-3.1b-r3.ebuild b/media-libs/urt/urt-3.1b-r3.ebuild index 4bb63a9695dd..a1f40effaf39 100644 --- a/media-libs/urt/urt-3.1b-r3.ebuild +++ b/media-libs/urt/urt-3.1b-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 @@ -76,8 +76,8 @@ src_configure() { src_compile() { tc-export AR RANLIB - emake CC=$(tc-getCC) -C lib buildlibso - emake CC=$(tc-getCC) + emake CC="$(tc-getCC)" -C lib buildlibso + emake CC="$(tc-getCC)" } src_install() {