blob: 029b80e1749b05ac62cfb7dfdbe38e1287a37986 [file] [log] [blame]
Andrew Geissler7e0e3c02022-02-25 20:34:39 +00001From 3bc5d48257032b6bbee532aad15062fbbcc43bfe Mon Sep 17 00:00:00 2001
Andrew Geissler82c905d2020-04-13 13:39:40 -05002From: Andrey Zhizhikin <andrey.z@gmail.com>
3Date: Mon, 27 Jan 2020 10:22:35 +0000
Andrew Geissler7e0e3c02022-02-25 20:34:39 +00004Subject: [PATCH] opencv: resolve missing opencv data dir in yocto build
Andrew Geissler82c905d2020-04-13 13:39:40 -05005
6When Yocto build is performed, opencv searches for data dir using simple
7'test' command, this fails because pkg-config provides an absolute
8path on the target which needs to be prepended by PKG_CONFIG_SYSROOT_DIR
9in order for the 'test' utility to pick up the absolute path.
10
11Upstream-Status: Inappropriate [OE-specific]
12
13Signed-off-by: Andrey Zhizhikin <andrey.z@gmail.com>
Andrew Geissler7e0e3c02022-02-25 20:34:39 +000014Signed-off-by: Jose Quaresma <quaresma.jose@gmail.com>
15
Andrew Geissler82c905d2020-04-13 13:39:40 -050016---
Andrew Geissler7e0e3c02022-02-25 20:34:39 +000017 ext/opencv/meson.build | 3 +++
18 1 file changed, 3 insertions(+)
Andrew Geissler82c905d2020-04-13 13:39:40 -050019
20diff --git a/ext/opencv/meson.build b/ext/opencv/meson.build
Andrew Geissler7e0e3c02022-02-25 20:34:39 +000021index 1d86b90..b5c8b95 100644
Andrew Geissler82c905d2020-04-13 13:39:40 -050022--- a/ext/opencv/meson.build
23+++ b/ext/opencv/meson.build
Andrew Geissler7e0e3c02022-02-25 20:34:39 +000024@@ -87,6 +87,9 @@ if opencv_found
25 opencv_prefix = opencv_dep.get_variable('prefix')
Andrew Geissler82c905d2020-04-13 13:39:40 -050026 gstopencv_cargs += ['-DOPENCV_PREFIX="' + opencv_prefix + '"']
27
Andrew Geissler7e0e3c02022-02-25 20:34:39 +000028+ pkgconf_sysroot = run_command(python3, '-c', 'import os; print(os.environ.get("PKG_CONFIG_SYSROOT_DIR"))').stdout().strip()
29+ opencv_prefix = pkgconf_sysroot + opencv_prefix
30+
Andrew Geissler82c905d2020-04-13 13:39:40 -050031 # Check the data dir used by opencv for its xml data files
32 # Use prefix from pkg-config to be compatible with cross-compilation
Andrew Geissler7e0e3c02022-02-25 20:34:39 +000033 r = run_command('test', '-d', opencv_prefix + '/share/opencv', check: false)