From 58ce84a3eae4d2c18d5288fe8b294cab8b587c22 Mon Sep 17 00:00:00 2001 From: Guillaume Desmottes Date: Tue, 6 Feb 2018 11:36:27 +0100 Subject: [PATCH] opencv: fix OPENCV_PATH_NAME when using meson Meson was checking for $prefix/OpenCV but was then defining OPENCV_PATH_NAME with 'OpenCv' rather than 'OpenCV'. https://bugzilla.gnome.org/show_bug.cgi?id=793212 --- ext/opencv/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/opencv/meson.build b/ext/opencv/meson.build index 0d0cd14fee..e6c3c970ec 100644 --- a/ext/opencv/meson.build +++ b/ext/opencv/meson.build @@ -73,7 +73,7 @@ if opencv_found else r = run_command('test', '-d', opencv_prefix + '/share/OpenCV') if r.returncode() == 0 - gstopencv_cargs += '-DOPENCV_PATH_NAME="OpenCv"' + gstopencv_cargs += '-DOPENCV_PATH_NAME="OpenCV"' else error('Unable to detect OpenCV data directory') endif