diff options
author | Jon Turney <[email protected]> | 2019-04-14 20:46:39 +0100 |
---|---|---|
committer | Jon Turney <[email protected]> | 2019-04-25 12:40:16 +0100 |
commit | 5d310015c57536224600252e4ceadcf964bfc4fa (patch) | |
tree | b88935491f4cda31e45510e2c1c5ad68c127b40c /src/gallium/targets/dri/meson.build | |
parent | 9445a4ab43939f78ecf1958db94bc80b276c4652 (diff) |
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"
Diffstat (limited to 'src/gallium/targets/dri/meson.build')
-rw-r--r-- | src/gallium/targets/dri/meson.build | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/targets/dri/meson.build b/src/gallium/targets/dri/meson.build index 5b4b4bc1ab7..dd40969a166 100644 --- a/src/gallium/targets/dri/meson.build +++ b/src/gallium/targets/dri/meson.build @@ -63,6 +63,7 @@ libgallium_dri = shared_library( # Will be deleted during installation, see install_megadrivers.py install : true, install_dir : dri_drivers_path, + name_suffix : 'so', ) foreach d : [[with_gallium_kmsro, [ |