summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVille Syrjälä <[email protected]>2017-10-10 01:34:18 +0300
committerVille Syrjälä <[email protected]>2017-10-13 14:28:41 +0300
commit66b1597a88f7c58eb45f29883ebf5235c1abb952 (patch)
treea7b351da5527770a457f249ea9a5299782a34ac5
parent79d403417cacd2728916e32ae55f4fc2a018515c (diff)
meson: Fix xf86vm dep
The pkg-config file is called xxf86vm.pc not xf86vm.pc. Cc: Dylan Baker <[email protected]> Cc: Eric Anholt <[email protected]> Signed-off-by: Ville Syrjälä <[email protected]> Reviewed-by: Eric Anholt <[email protected]> Reviewed-by: Dylan Baker <[email protected]>
-rw-r--r--meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index bff40f697d3..4ba00283cec 100644
--- a/meson.build
+++ b/meson.build
@@ -582,7 +582,7 @@ if with_platform_x11
dependency('xcb-glx', version : '>= 1.8.1'),
]
- dep_xf86vm = dependency('xf86vm', required : false)
+ dep_xf86vm = dependency('xxf86vm', required : false)
endif
# TODO: XF86VIDMODE
endif