Skip to content
Snippets Groups Projects
Commit 05a87a8b authored by Rye Mutt's avatar Rye Mutt :bread:
Browse files

Skip strip of dullahan pak and bin files on linux

parent 0b3e9e8b
No related branches found
No related tags found
No related merge requests found
......@@ -1297,7 +1297,7 @@ def strip_binaries(self):
self.run_command(
["find"] +
[os.path.join(self.get_dst_prefix(), dir) for dir in ('bin', 'lib')] +
['-type', 'f', '!', '-name', '*.py',
['-type', 'f', '!', '-name', '*.py', '!', '-name', '*.pak', '!', '-name', '*.bin',
'!', '-name', 'update_install', '-exec', 'strip', '-S', '{}', ';'])
class Linux_i686_Manifest(LinuxManifest):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment