aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bin/install_megadrivers.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/bin/install_megadrivers.py b/bin/install_megadrivers.py
index 31636f7244c..470137e0c1d 100644
--- a/bin/install_megadrivers.py
+++ b/bin/install_megadrivers.py
@@ -69,7 +69,14 @@ def main():
name, ext = os.path.splitext(name)
finally:
os.chdir(ret)
+
+ # Remove meson-created master .so and symlinks
os.unlink(master)
+ name, ext = os.path.splitext(master)
+ while ext != '.so':
+ if os.path.lexists(name):
+ os.unlink(name)
+ name, ext = os.path.splitext(name)
if __name__ == '__main__':