From ea0480f32cb6183f4796cf47e466ab542d54e07f Mon Sep 17 00:00:00 2001 From: David Sansome Date: Sun, 13 Dec 2015 17:55:48 +1100 Subject: [PATCH] Don't create Versions/4/4 symlinks --- dist/macdeploy.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dist/macdeploy.py b/dist/macdeploy.py index 872c2a076..5d83c2e4b 100755 --- a/dist/macdeploy.py +++ b/dist/macdeploy.py @@ -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')])