aboutsummaryrefslogtreecommitdiffstats
path: root/src/gallium/targets/xvmc
diff options
context:
space:
mode:
authorEric Engestrom <[email protected]>2019-03-26 11:21:09 +0000
committerEric Engestrom <[email protected]>2019-04-01 07:04:13 +0000
commitaa7afe324c2092fb31f9498cb3eda47dda96e6f2 (patch)
treee74976fe8fc21a525d8d879cf5a04039bef80e0c /src/gallium/targets/xvmc
parent06f40f5765d79ee71dc6b5b1ae31055cee943ee5 (diff)
meson: strip rpath from megadrivers
More specifically, use the library file that has been post-processed by Meson when creating the hardlinks. Bugs: https://bugs.freedesktop.org/show_bug.cgi?id=108766 Fixes: 3218056e0eb375eeda47 "meson: Build i965 and dri stack" Signed-off-by: Eric Engestrom <[email protected]> Reviewed-by: Dylan Baker <[email protected]>
Diffstat (limited to 'src/gallium/targets/xvmc')
-rw-r--r--src/gallium/targets/xvmc/meson.build3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gallium/targets/xvmc/meson.build b/src/gallium/targets/xvmc/meson.build
index f91ac4e8c0c..845f3a421b7 100644
--- a/src/gallium/targets/xvmc/meson.build
+++ b/src/gallium/targets/xvmc/meson.build
@@ -47,6 +47,9 @@ libxvmc_gallium = shared_library(
],
dependencies : [dep_thread, driver_r600, driver_nouveau],
link_depends : xvmc_link_depends,
+ # Will be deleted during installation, see install_megadrivers.py
+ install : true,
+ install_dir : xvmc_drivers_path,
)
foreach d : [[with_gallium_r600, 'r600'], [with_gallium_nouveau, 'nouveau']]