void-packages/srcpkgs/mesa/patches/no-unlink-megadrivers.patch
Stefano Ragni 18e22ce3af mesa: reorganize dri subpackages by megadrivers instead of vendors
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.
2019-12-27 20:21:57 +01:00

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):