e.g. libvdpau_radeonsi.so(.1(.0)) were pointing to the absolute build-time path of libvdpau_radeonsi.so.1.0.0, which caused trouble when packaging the libraries. --- bin/install_megadrivers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/bin/install_megadrivers.py b/bin/install_megadrivers.py index 86bfa35918..ce947b4332 100755 --- a/bin/install_megadrivers.py +++ b/bin/install_megadrivers.py @@ -58,7 +58,7 @@ def main(): while ext != '.so': if os.path.exists(name): os.unlink(name) - os.symlink(driver, name) + os.symlink(os.path.relpath(driver), name) name, ext = os.path.splitext(name) finally: os.chdir(ret) -- 2.16.2 _______________________________________________ mesa-dev mailing list mesa-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/mesa-dev