void-packages/srcpkgs/mutter/patches/fixudev.patch

17 lines
455 B
Diff
Raw Normal View History

2019-03-12 11:15:06 +00:00
Apparently the version limit is only required for systemd udev, it works
just fine with our version of eudev.
diff --git meson.build meson.build
index dc210e6..6e080ca 100644
--- meson.build
+++ meson.build
@@ -168,7 +168,7 @@ endif
have_libgudev = get_option('udev')
if have_libgudev
- libudev_dep = dependency('libudev', version: udev_req)
+ libudev_dep = dependency('libudev')
gudev_dep = dependency('gudev-1.0', version: gudev_req)
endif