diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2017-11-09 17:52:31 -0800 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2017-12-04 14:36:26 -0800 |
commit | f7f1b30f81e842db6057591470ce3cb6d4fb2795 (patch) | |
tree | 947cb2a80c1011a57754c3311b003ca899375016 /bin | |
parent | b065de05c6a83aeb4eabbc7141f7b56dbd641b00 (diff) |
meson: extend install_megadrivers script to handle symmlinking
Which is required for the gallium media state trackers.
v2: - Make symlinks local instead of absolute
Signed-off-by: Dylan Baker <dylanx.c.baker@intel.com>
Reviewed-by: Eric Engestrom <eric.engestrom@imgtec.com>
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/install_megadrivers.py | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/bin/install_megadrivers.py b/bin/install_megadrivers.py index a98d7dd177b..86bfa359188 100755 --- a/bin/install_megadrivers.py +++ b/bin/install_megadrivers.py @@ -44,10 +44,24 @@ def main(): for each in args.drivers: driver = os.path.join(to, each) + if os.path.exists(driver): os.unlink(driver) print('installing {} to {}'.format(args.megadriver, driver)) os.link(master, driver) + + try: + ret = os.getcwd() + os.chdir(to) + + name, ext = os.path.splitext(each) + while ext != '.so': + if os.path.exists(name): + os.unlink(name) + os.symlink(driver, name) + name, ext = os.path.splitext(name) + finally: + os.chdir(ret) os.unlink(master) |