From 2c7c0f09126bb878b4943ba1edcb8ca8c7296093 Mon Sep 17 00:00:00 2001 From: Tanu Kaskinen Date: Fri, 3 Jan 2020 08:45:25 +0200 Subject: [PATCH] build-sys: Remove version number from the module path When packaging a new version for OpenEmbedded, I use the buildhistory-diff tool to check what changed between the versions. The version number in the module directory means that I get tons of diff output due to changes in file paths. There are many removed and added files and it's hard to see if something else than just the version number changed. That motivated me to write this patch. Removing the version number has the downside that it makes it easier to have version mismatches between the daemon and the modules, but https://gitlab.freedesktop.org/pulseaudio/pulseaudio/merge_requests/249 will make the handling of such situations better. Part-of: --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 944dcbb89..9aa12cf88 100644 --- a/meson.build +++ b/meson.build @@ -85,7 +85,7 @@ pulsesysconfdir = join_paths(sysconfdir, 'pulse') modlibexecdir = get_option('modlibexecdir') if modlibexecdir == '' - modlibexecdir = join_paths(libdir, 'pulse-' + pa_version_major_minor, 'modules') + modlibexecdir = join_paths(libdir, 'pulseaudio', 'modules') endif padsplibdir = get_option('padsplibdir')