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/mesa/drivers | |
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/mesa/drivers')
-rw-r--r-- | src/mesa/drivers/dri/meson.build | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/meson.build b/src/mesa/drivers/dri/meson.build index a0f47bbecee..dddc4ae3dfd 100644 --- a/src/mesa/drivers/dri/meson.build +++ b/src/mesa/drivers/dri/meson.build @@ -57,6 +57,7 @@ if dri_drivers != [] # Will be deleted during installation, see install_megadrivers.py install : true, install_dir : dri_drivers_path, + name_suffix : 'so', ) meson.add_install_script( |