From b31cf7ac306de8ca8ff69403c9671f2cedee2f66 Mon Sep 17 00:00:00 2001 From: Gioele Barabucci Date: Sat, 2 Dec 2023 09:58:42 +0100 Subject: [PATCH] spa/meson.build: Look for udev rules in /usr by default `/usr/lib/udev/rules.d` is the path specified in udev(7) [1], as well as the location for udev rules in all current major distributions. [1] https://github.com/systemd/systemd/blob/v254/man/udev.xml#L51 --- spa/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spa/meson.build b/spa/meson.build index 0ee750d6e..841d27b40 100644 --- a/spa/meson.build +++ b/spa/meson.build @@ -35,7 +35,7 @@ if get_option('spa-plugins').allowed() udevrulesdir = get_option('udevrulesdir') if udevrulesdir == '' # absolute path, otherwise meson prepends the prefix - udevrulesdir = '/lib/udev/rules.d' + udevrulesdir = '/usr/lib/udev/rules.d' endif # plugin-specific dependencies