From 5d310015c57536224600252e4ceadcf964bfc4fa Mon Sep 17 00:00:00 2001 From: Jon Turney Date: Sun, 14 Apr 2019 20:46:39 +0100 Subject: meson: Force '.so' extension for DRI drivers DRI driver loadable modules are always installed with install_megadriver.py with names ending with '.so', irrespective of platform. Force the name the loadable module is built with to match, so install_megadriver.py doesn't spin trying to remove non-existent symlinks. Fixes: c77acc3c "meson: remove meson-created megadrivers symlinks" --- src/gallium/targets/xvmc/meson.build | 1 + 1 file changed, 1 insertion(+) (limited to 'src/gallium/targets/xvmc') diff --git a/src/gallium/targets/xvmc/meson.build b/src/gallium/targets/xvmc/meson.build index 845f3a421b7..537275aab57 100644 --- a/src/gallium/targets/xvmc/meson.build +++ b/src/gallium/targets/xvmc/meson.build @@ -50,6 +50,7 @@ libxvmc_gallium = shared_library( # Will be deleted during installation, see install_megadrivers.py install : true, install_dir : xvmc_drivers_path, + name_suffix : 'so', ) foreach d : [[with_gallium_r600, 'r600'], [with_gallium_nouveau, 'nouveau']] -- cgit v1.2.3