all repos — mgba @ 444d703e90b8cf1bdf4f18bab77605d437ea1363

mGBA Game Boy Advance Emulator

All: Fix small bugs in deploy-mac.py when using a root
Jeffrey Pfau jeffrey@endrift.com
Sat, 27 Dec 2014 18:32:33 -0800
commit

444d703e90b8cf1bdf4f18bab77605d437ea1363

parent

27eb75fcded51889a4f2b9d080b80737a50d1a1e

1 files changed, 19 insertions(+), 20 deletions(-)

jump to
M tools/deploy-mac.pytools/deploy-mac.py

@@ -60,26 +60,25 @@ split = splitPath(path)

newExecPath = ['@executable_path', '..', 'Frameworks'] newPath = execPath[:-1] newPath.append('Frameworks') - if split[0] == '/': - split[:1] = root + if split[:3] == ['/', 'usr', 'lib'] or split[:2] == ['/', 'System']: + return None, None, None, None if split[0] == '@executable_path': split[:1] = execPath - if split[:3] == ['/', 'usr', 'lib'] or split[:2] == ['/', 'System']: - newPath = None - newExecPath = None - else: - isFramework = False - if not split[-1].endswith('.dylib'): - isFramework = True - split, framework = findFramework(split) - newPath.append(split[-1]) - newExecPath.append(split[-1]) - if isFramework: - newPath.extend(framework) - newExecPath.extend(framework) - split.extend(framework) - newPath = joinPath(newPath) - newExecPath = joinPath(newExecPath) + if split[0] == '/' and not os.access(joinPath(split), os.F_OK): + print(split) + split[:1] = root + isFramework = False + if not split[-1].endswith('.dylib'): + isFramework = True + split, framework = findFramework(split) + newPath.append(split[-1]) + newExecPath.append(split[-1]) + if isFramework: + newPath.extend(framework) + newExecPath.extend(framework) + split.extend(framework) + newPath = joinPath(newPath) + newExecPath = joinPath(newExecPath) return joinPath(split), newPath, path, newExecPath def updateMachO(bin, execPath, root):

@@ -133,7 +132,7 @@ for executable in os.listdir(os.path.join(args.bundle, 'Contents/MacOS')):

if executable.endswith('.dSYM'): continue fullPath = os.path.join(args.bundle, 'Contents/MacOS/', executable) - updateMachO(fullPath, splitPath(os.path.join(args.bundle, 'Contents/MacOS')), args.root) + updateMachO(fullPath, splitPath(os.path.join(args.bundle, 'Contents/MacOS')), splitPath(args.root)) if args.qt_plugins: try: shutil.rmtree(os.path.join(args.bundle, 'Contents/PlugIns/'))

@@ -152,4 +151,4 @@ newDir = os.path.join(args.bundle, 'Contents/PlugIns/', kind)

makedirs(newDir) newPath = os.path.join(newDir, plug) shutil.copy2(os.path.join(qtPath, 'plugins', plugin), newPath) - updateMachO(newPath, splitPath(os.path.join(args.bundle, 'Contents/MacOS')), args.root) + updateMachO(newPath, splitPath(os.path.join(args.bundle, 'Contents/MacOS')), splitPath(args.root))