Module: Mesa Branch: master Commit: 6ac87c17695ebf300a81ecc61e5703c6492b6e5c URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=6ac87c17695ebf300a81ecc61e5703c6492b6e5c
Author: Dylan Baker <[email protected]> Date: Wed Apr 4 10:23:02 2018 -0700 meson: fix megadriver symlinking Which should be relative instead of absolute. Fixes: f7f1b30f81e842db6057591470ce3cb6d4fb2795 ("meson: extend install_megadrivers script to handle symmlinking") Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=105567 Signed-off-by: Dylan Baker <[email protected]> Reviewed-and-Tested-by: Eric Engestrom <[email protected]> Reviewed-by: Emil Velikov <[email protected]> --- 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..7931a544bd 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(each, name) name, ext = os.path.splitext(name) finally: os.chdir(ret) _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
