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 6D7B915808B for ; Sat, 19 Mar 2022 23:45:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5D6FAE08BD; Sat, 19 Mar 2022 23:45:14 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C9953E08C8 for ; Sat, 19 Mar 2022 23:45:13 +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 24EA934321C for ; Sat, 19 Mar 2022 23:45:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CB56F32E for ; Sat, 19 Mar 2022 23:45:10 +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: <1647733344.d9dce1e11b145fed3e806550d673138d5d7630c3.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-video/vlc/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-video/vlc/vlc-3.0.16-r7.ebuild media-video/vlc/vlc-3.0.17.3.ebuild media-video/vlc/vlc-3.0.9999.ebuild media-video/vlc/vlc-9999.ebuild X-VCS-Directories: media-video/vlc/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: d9dce1e11b145fed3e806550d673138d5d7630c3 X-VCS-Branch: master Date: Sat, 19 Mar 2022 23:45:10 +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: 3eedfef4-a6f8-4e28-b9fa-77440d5d80ff X-Archives-Hash: e90321141842fee71291dadf0a6c2960 commit: d9dce1e11b145fed3e806550d673138d5d7630c3 Author: Sam James gentoo org> AuthorDate: Sat Mar 19 23:42:24 2022 +0000 Commit: Sam James gentoo org> CommitDate: Sat Mar 19 23:42:24 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d9dce1e1 media-video/vlc: [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-video/vlc/vlc-3.0.16-r7.ebuild | 4 ++-- media-video/vlc/vlc-3.0.17.3.ebuild | 2 +- media-video/vlc/vlc-3.0.9999.ebuild | 2 +- media-video/vlc/vlc-9999.ebuild | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/media-video/vlc/vlc-3.0.16-r7.ebuild b/media-video/vlc/vlc-3.0.16-r7.ebuild index 6c0852eb7fb2..a489be732bc1 100644 --- a/media-video/vlc/vlc-3.0.16-r7.ebuild +++ b/media-video/vlc/vlc-3.0.16-r7.ebuild @@ -1,4 +1,4 @@ -# Copyright 2000-2021 Gentoo Authors +# Copyright 2000-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -285,7 +285,7 @@ src_prepare() { } src_configure() { - local -x BUILDCC=$(tc-getBUILD_CC) + local -x BUILDCC="$(tc-getBUILD_CC)" local myeconfargs=( --disable-aa diff --git a/media-video/vlc/vlc-3.0.17.3.ebuild b/media-video/vlc/vlc-3.0.17.3.ebuild index cbf2809db75f..b22877009420 100644 --- a/media-video/vlc/vlc-3.0.17.3.ebuild +++ b/media-video/vlc/vlc-3.0.17.3.ebuild @@ -279,7 +279,7 @@ src_prepare() { } src_configure() { - local -x BUILDCC=$(tc-getBUILD_CC) + local -x BUILDCC="$(tc-getBUILD_CC)" local myeconfargs=( --disable-aa diff --git a/media-video/vlc/vlc-3.0.9999.ebuild b/media-video/vlc/vlc-3.0.9999.ebuild index da3784db8aee..423213f43413 100644 --- a/media-video/vlc/vlc-3.0.9999.ebuild +++ b/media-video/vlc/vlc-3.0.9999.ebuild @@ -278,7 +278,7 @@ src_prepare() { } src_configure() { - local -x BUILDCC=$(tc-getBUILD_CC) + local -x BUILDCC="$(tc-getBUILD_CC)" local myeconfargs=( --disable-aa diff --git a/media-video/vlc/vlc-9999.ebuild b/media-video/vlc/vlc-9999.ebuild index 68cc07eff6bc..9eb1890b6c9a 100644 --- a/media-video/vlc/vlc-9999.ebuild +++ b/media-video/vlc/vlc-9999.ebuild @@ -281,7 +281,7 @@ src_prepare() { } src_configure() { - local -x BUILDCC=$(tc-getBUILD_CC) + local -x BUILDCC="$(tc-getBUILD_CC)" local myeconfargs=( --disable-optimizations