Fix mac deployment script for Sparkle.

This commit is contained in:
John Maguire 2010-04-15 16:00:11 +00:00
parent 9bddf53312
commit 673ff760da
1 changed files with 1 additions and 1 deletions

View File

@ -169,7 +169,7 @@ def GetBrokenLibraries(binary):
continue # System framework
elif re.match(r'^\s*/usr/lib/', line):
continue # unix style system library
elif re.match(r'^\s*@executable_path', line):
elif re.match(r'^\s*@executable_path', line) or re.match(r'^\s*@loader_path', line):
# Potentially already fixed library
relative_path = os.path.join(*line.split('/')[3:])
if not os.path.exists(os.path.join(frameworks_dir, relative_path)):