diff options
author | 2022-03-20 00:12:06 +0000 | |
---|---|---|
committer | 2022-03-20 00:12:06 +0000 | |
commit | 43ed15fea1b56b94e3d38479d61701b369ac3aaa (patch) | |
tree | 459df7212afb96b4a8f2b9a04a9e26b9296ddfcd /media-video | |
parent | media-tv/linuxtv-dvb-apps: [QA] fix tc-get* quoting (diff) | |
download | gentoo-43ed15fea1b56b94e3d38479d61701b369ac3aaa.tar.gz gentoo-43ed15fea1b56b94e3d38479d61701b369ac3aaa.tar.bz2 gentoo-43ed15fea1b56b94e3d38479d61701b369ac3aaa.zip |
media-video/v4l2loopback: [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/v4l2loopback/v4l2loopback-0.12.5-r1.ebuild | 4 | ||||
-rw-r--r-- | media-video/v4l2loopback/v4l2loopback-9999.ebuild | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/media-video/v4l2loopback/v4l2loopback-0.12.5-r1.ebuild b/media-video/v4l2loopback/v4l2loopback-0.12.5-r1.ebuild index 6c744550640b..6c4fb6dc4f4b 100644 --- a/media-video/v4l2loopback/v4l2loopback-0.12.5-r1.ebuild +++ b/media-video/v4l2loopback/v4l2loopback-0.12.5-r1.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 @@ -40,7 +40,7 @@ src_prepare() { src_compile() { linux-mod_src_compile if use examples; then - emake CC=$(tc-getCC) -C examples + emake CC="$(tc-getCC)" -C examples fi } diff --git a/media-video/v4l2loopback/v4l2loopback-9999.ebuild b/media-video/v4l2loopback/v4l2loopback-9999.ebuild index 712f4d2b8c0f..760951059416 100644 --- a/media-video/v4l2loopback/v4l2loopback-9999.ebuild +++ b/media-video/v4l2loopback/v4l2loopback-9999.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 @@ -41,7 +41,7 @@ src_prepare() { src_compile() { linux-mod_src_compile if use examples; then - emake CC=$(tc-getCC) -C examples + emake CC="$(tc-getCC)" -C examples fi } |