From b9a04e4d5759d21b4cb00c68d7ae602c9dc942c0 Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Wed, 5 Nov 2025 11:24:57 +1000 Subject: [PATCH] meson.build: export the plugin dir via pkgconfig This is for the system-wide plugindir only - the only path where we'd expect other packages to put plugins. Part-of: --- meson.build | 3 +++ 1 file changed, 3 insertions(+) diff --git a/meson.build b/meson.build index eecb6f2e..94bad9d3 100644 --- a/meson.build +++ b/meson.build @@ -505,6 +505,9 @@ pkgconfig.generate( version : meson.project_version(), libraries : lib_libinput, requires_private : dep_udev, + variables : [ + 'plugindir=${libdir}/libinput/plugins' + ] ) git_version_h = vcs_tag(command : ['git', 'describe'],