1
0
mirror of https://github.com/clementine-player/Clementine synced 2024-12-22 15:58:45 +01:00

Don't create Versions/4/4 symlinks

This commit is contained in:
David Sansome 2015-12-13 17:55:48 +11:00
parent 5a49fa4ad0
commit ea0480f32c

6
dist/macdeploy.py vendored
View File

@ -334,13 +334,13 @@ def CopyFramework(src_binary):
# Create symlinks in the Framework to make it look like
# https://developer.apple.com/library/mac/documentation/MacOSX/Conceptual/BPFrameworks/Concepts/FrameworkAnatomy.html
commands.append(['ln', '-sf',
commands.append(['ln', '-sfh',
'Versions/Current/%s' % name,
os.path.join(dest_base, name)])
commands.append(['ln', '-sf',
commands.append(['ln', '-sfh',
'Versions/Current/Resources',
os.path.join(dest_base, 'Resources')])
commands.append(['ln', '-sf',
commands.append(['ln', '-sfh',
version,
os.path.join(dest_base, 'Versions/Current')])