From e4ae279f7b07b88333285a4efb4357f69a1b41aa Mon Sep 17 00:00:00 2001 From: Jocelyn Turcotte Date: Tue, 2 Feb 2016 10:43:44 +0100 Subject: [PATCH] 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. --- admin/osx/macdeployqt.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) -- 2.30.2