diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2018-04-04 10:23:02 -0700 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2018-04-05 10:48:38 -0700 |
commit | 6ac87c17695ebf300a81ecc61e5703c6492b6e5c (patch) | |
tree | 014557f44b5746443dee0a82419b2740220bba3a /bin | |
parent | 19dbed6477525bff2918182b06bf01314f3cd5e9 (diff) |
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 <dylan.c.baker@intel.com>
Reviewed-and-Tested-by: Eric Engestrom <eric.engestrom@imgtec.com>
Reviewed-by: Emil Velikov <emil.velikov@collabora.com>
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/install_megadrivers.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/install_megadrivers.py b/bin/install_megadrivers.py index 86bfa359188..7931a544bd2 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) |