18e22ce3af
Mesa dri drivers for different vendors are actually hard links to the same file, called a `megadriver`, so they are better grouped in the same subpackage. This solves issues when stripping debug info.
15 lines
546 B
Diff
15 lines
546 B
Diff
This patch is needed to retain the master .so, so that only that filename is
|
|
stripped while the related hard links are excluded.
|
|
diff --git bin/install_megadrivers.py bin/install_megadrivers.py
|
|
index 470137e..7d56def 100644
|
|
--- bin/install_megadrivers.py
|
|
+++ bin/install_megadrivers.py
|
|
@@ -71,7 +71,7 @@ def main():
|
|
os.chdir(ret)
|
|
|
|
# Remove meson-created master .so and symlinks
|
|
- os.unlink(master)
|
|
+ #os.unlink(master)
|
|
name, ext = os.path.splitext(master)
|
|
while ext != '.so':
|
|
if os.path.lexists(name):
|