From: Jocelyn Turcotte Date: Tue, 2 Feb 2016 09:43:44 +0000 (+0100) Subject: Fix the crash reporter not launching X-Git-Tag: archive/raspbian/3.16.7-1_deb13u1+rpi1~1^2~1254^2~28 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=e4ae279f7b07b88333285a4efb4357f69a1b41aa;p=nextcloud-desktop.git Fix the crash reporter not launching The proper path needs to be returned from CopyFramework in order for install_name_tool to be run on the destination. --- diff --git a/admin/osx/macdeployqt.py b/admin/osx/macdeployqt.py index 25bfaeb2c..aab039388 100755 --- a/admin/osx/macdeployqt.py +++ b/admin/osx/macdeployqt.py @@ -262,8 +262,8 @@ def CopyFramework(source_dylib): dest_dylib_path = os.path.join(frameworks_dir, *parts[i:-1]) break if os.path.exists(dest_path): - print dest_path, "already exists, skipping..." - return + print dest_path, "already exists, skipping copy..." + return os.path.join(dest_dylib_path, dylib_name) args = ['mkdir', '-p', dest_dylib_path] commands.append(args)