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 2F52615808B 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 DA6E0E08A0; 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 B9EBDE08A0 for ; Sat, 19 Mar 2022 23:39:42 +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 98FBC343873 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 2B32D330 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: <1647732977.bad90693b1f63b97af0d8d8c9f562c6991b18511.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/svgalib/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/svgalib/svgalib-1.9.25-r8.ebuild X-VCS-Directories: media-libs/svgalib/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: bad90693b1f63b97af0d8d8c9f562c6991b18511 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: bf8b09e8-e758-489e-9441-888cd829ecd0 X-Archives-Hash: 377613ec68ffc74d804a9794ba324d50 commit: bad90693b1f63b97af0d8d8c9f562c6991b18511 Author: Sam James gentoo org> AuthorDate: Sat Mar 19 23:36:17 2022 +0000 Commit: Sam James gentoo org> CommitDate: Sat Mar 19 23:36:17 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bad90693 media-libs/svgalib: [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/svgalib/svgalib-1.9.25-r8.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/media-libs/svgalib/svgalib-1.9.25-r8.ebuild b/media-libs/svgalib/svgalib-1.9.25-r8.ebuild index 9fea5896e39d..4199e5163324 100644 --- a/media-libs/svgalib/svgalib-1.9.25-r8.ebuild +++ b/media-libs/svgalib/svgalib-1.9.25-r8.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 @@ -49,7 +49,7 @@ src_prepare() { src_compile() { use kernel-helper || export NO_HELPER=y - export CC=$(tc-getCC) + export CC="$(tc-getCC)" # C89 extern inlines are needed, see #576260 append-cflags -fgnu89-inline