PulseAudio Marge Bot pushed to branch master at PulseAudio / pulseaudio
Commits: 2c7c0f09 by Tanu Kaskinen at 2021-08-25T18:43:35+03:00 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: <https://gitlab.freedesktop.org/pulseaudio/pulseaudio/-/merge_requests/230> - - - - - 1 changed file: - meson.build Changes: ===================================== 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') View it on GitLab: https://gitlab.freedesktop.org/pulseaudio/pulseaudio/-/commit/2c7c0f09126bb878b4943ba1edcb8ca8c7296093 -- View it on GitLab: https://gitlab.freedesktop.org/pulseaudio/pulseaudio/-/commit/2c7c0f09126bb878b4943ba1edcb8ca8c7296093 You're receiving this email because of your account on gitlab.freedesktop.org.
