Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJocelyn Turcotte <jturcotte@woboq.com>2016-02-02 12:43:44 +0300
committerJocelyn Turcotte <jturcotte@woboq.com>2016-02-02 12:43:52 +0300
commite4ae279f7b07b88333285a4efb4357f69a1b41aa (patch)
treeaa3e659867c6d94c783ffeeaa2116fe0442a1194 /admin/osx/macdeployqt.py
parent25e0d1eac39e5ba34504fc88a50a376a8b4585b7 (diff)
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.
Diffstat (limited to 'admin/osx/macdeployqt.py')
-rwxr-xr-xadmin/osx/macdeployqt.py4
1 files 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)