summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2018-02-06 11:36:27 +0100
committerTim-Philipp Müller <tim@centricular.com>2018-02-06 13:06:33 +0000
commit58ce84a3eae4d2c18d5288fe8b294cab8b587c22 (patch)
treebbd452a93609a3984c62ce91e7e23839b6a9b692 /ext
parentfc4fe1c10e9c34756f71de31b3eb2034e78dec75 (diff)
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
Diffstat (limited to 'ext')
-rw-r--r--ext/opencv/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/opencv/meson.build b/ext/opencv/meson.build
index 0d0cd14fe..e6c3c970e 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