summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorNirbheek Chauhan <nirbheek@centricular.com>2019-01-10 15:34:51 +0530
committerNirbheek Chauhan <nirbheek@centricular.com>2019-01-10 15:34:51 +0530
commit0b94ed81a48c8c6169f2706757c6ccf8fa23c9eb (patch)
treec4aa57d89005b66d0cd2069e2f262ca1dfe1e2ac /sys
parent0a350c610dab54dcdf55b45a0293fff048d24bb3 (diff)
downloadgstreamer-plugins-bad-0b94ed81a48c8c6169f2706757c6ccf8fa23c9eb.tar.gz
meson: Fix building of MSDK plugin on Windows
Variable name was typoed in 604c8d5232eba961ca34c9e98de8d5454cd5ab5f
Diffstat (limited to 'sys')
-rw-r--r--sys/msdk/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/msdk/meson.build b/sys/msdk/meson.build
index 046c0cd6b..c94102d38 100644
--- a/sys/msdk/meson.build
+++ b/sys/msdk/meson.build
@@ -49,7 +49,7 @@ else
if mfx_root != ''
mfx_libdir = [mfx_root + '/lib/lin_x64', mfx_root + '/lib/x64', mfx_root + '/lib64', mfx_root + '/lib']
mfx_incdir = join_paths([mfx_root, 'include'])
- mfx_lib = cxx.find_library('mfx', dirs: mfx_libdir, required: mfx_option)
+ mfx_lib = cxx.find_library('mfx', dirs: mfx_libdir, required: msdk_option)
mfx_inc = include_directories(mfx_incdir)
mfx_dep = declare_dependency(include_directories: mfx_inc, dependencies: mfx_lib)
elif msdk_option.enabled()