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:
authorDaniel Molkentin <danimo@owncloud.com>2014-10-01 23:41:56 +0400
committerDaniel Molkentin <danimo@owncloud.com>2014-10-01 23:41:56 +0400
commit171fd22d9188f6b0a63fbf633efcdb2e5c06389e (patch)
tree9bdd56847e7cf9ac05172ffdc2b25d984ab25cfb
parent78d50f4033bc941d24d80ecd37119f8011994f73 (diff)
Fix rpath for libraries
-rwxr-xr-xadmin/osx/macdeployqt.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/admin/osx/macdeployqt.py b/admin/osx/macdeployqt.py
index 26523da89..fe2c9c20b 100755
--- a/admin/osx/macdeployqt.py
+++ b/admin/osx/macdeployqt.py
@@ -283,7 +283,7 @@ def FindSystemLibrary(library_name):
def FixLibraryInstallPath(library_path, library):
system_library = FindSystemLibrary(os.path.basename(library_path))
if system_library is None:
- new_path = '@executable_path/../Frameworks/%s' % os.path.basename(library_path)
+ new_path = '@executable_path/../MacOS/%s' % os.path.basename(library_path)
FixInstallPath(library_path, library, new_path)
else:
FixInstallPath(library_path, library, system_library)