Gentoo Archives: gentoo-commits

From: James Le Cuirot <chewi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-tv/v4l-utils/
Date: Tue, 29 Dec 2020 21:47:47
Message-Id: 1609278432.63af976b818713e94e17f63c9c51a5d06c71eb1a.chewi@gentoo
1 commit: 63af976b818713e94e17f63c9c51a5d06c71eb1a
2 Author: James Le Cuirot <chewi <AT> gentoo <DOT> org>
3 AuthorDate: Tue Dec 29 21:47:12 2020 +0000
4 Commit: James Le Cuirot <chewi <AT> gentoo <DOT> org>
5 CommitDate: Tue Dec 29 21:47:12 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=63af976b
7
8 media-tv/v4l-utils: Don't perform clang target check in binpkgs
9
10 Closes: https://bugs.gentoo.org/762328
11 Package-Manager: Portage-3.0.12, Repoman-3.0.1
12 Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org>
13
14 media-tv/v4l-utils/v4l-utils-1.20.0.ebuild | 2 +-
15 1 file changed, 1 insertion(+), 1 deletion(-)
16
17 diff --git a/media-tv/v4l-utils/v4l-utils-1.20.0.ebuild b/media-tv/v4l-utils/v4l-utils-1.20.0.ebuild
18 index a1ac0bb004d..917bdd3a785 100644
19 --- a/media-tv/v4l-utils/v4l-utils-1.20.0.ebuild
20 +++ b/media-tv/v4l-utils/v4l-utils-1.20.0.ebuild
21 @@ -47,7 +47,7 @@ PATCHES=(
22 QA_PREBUILT="*/rc_keymaps/protocols/*.o"
23
24 pkg_pretend() {
25 - if use bpf; then
26 + if [[ ${MERGE_TYPE} != binary ]] && use bpf; then
27 local clang=${ac_cv_prog_CLANG:-${CLANG:-clang}}
28 ${clang} -target bpf -print-supported-cpus &>/dev/null ||
29 die "${clang} does not support the BPF target. Please check LLVM_TARGETS."