diff options
author | Eric Engestrom <eric.engestrom@intel.com> | 2019-03-26 11:21:09 +0000 |
---|---|---|
committer | Eric Engestrom <eric@engestrom.ch> | 2019-04-01 07:04:13 +0000 |
commit | aa7afe324c2092fb31f9498cb3eda47dda96e6f2 (patch) | |
tree | e74976fe8fc21a525d8d879cf5a04039bef80e0c /src/gallium/targets/vdpau/meson.build | |
parent | 06f40f5765d79ee71dc6b5b1ae31055cee943ee5 (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 <eric.engestrom@intel.com>
Reviewed-by: Dylan Baker <dylan@pnwbakers.com>
Diffstat (limited to 'src/gallium/targets/vdpau/meson.build')
-rw-r--r-- | src/gallium/targets/vdpau/meson.build | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gallium/targets/vdpau/meson.build b/src/gallium/targets/vdpau/meson.build index b53a4c232e9..3017721bda0 100644 --- a/src/gallium/targets/vdpau/meson.build +++ b/src/gallium/targets/vdpau/meson.build @@ -55,6 +55,9 @@ libvdpau_gallium = shared_library( ], link_depends : vdpau_link_depends, soversion : '@0@.@1@.0'.format(VDPAU_MAJOR, VDPAU_MINOR), + # Will be deleted during installation, see install_megadrivers.py + install : true, + install_dir : vdpau_drivers_path, ) foreach d : [[with_gallium_r300, 'r300'], [with_gallium_r600, 'r600'], |