diff options
author | Sam James <sam@gentoo.org> | 2022-03-19 23:42:24 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-03-19 23:42:24 +0000 |
commit | d9dce1e11b145fed3e806550d673138d5d7630c3 (patch) | |
tree | 804fc21124838a4245521a73afcf79b93aec4767 /media-video | |
parent | net-mail/popa3d: [QA] fix tc-get* quoting (diff) | |
download | gentoo-d9dce1e11b145fed3e806550d673138d5d7630c3.tar.gz gentoo-d9dce1e11b145fed3e806550d673138d5d7630c3.tar.bz2 gentoo-d9dce1e11b145fed3e806550d673138d5d7630c3.zip |
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 <sam@gentoo.org>
Diffstat (limited to 'media-video')
-rw-r--r-- | media-video/vlc/vlc-3.0.16-r7.ebuild | 4 | ||||
-rw-r--r-- | media-video/vlc/vlc-3.0.17.3.ebuild | 2 | ||||
-rw-r--r-- | media-video/vlc/vlc-3.0.9999.ebuild | 2 | ||||
-rw-r--r-- | 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 |