mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-06-19 08:28:21 +02:00
meson: fix megadriver symlinking
Which should be relative instead of absolute. Fixes:f7f1b30f81("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> (cherry picked from commit6ac87c1769)
This commit is contained in:
parent
c9b6960f34
commit
5f4009079c
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue