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
path: root/admin
diff options
context:
space:
mode:
authorHannah von Reth <hannah.vonreth@owncloud.com>2019-10-23 13:04:31 +0300
committerHannah von Reth <vonreth@kde.org>2019-10-23 16:38:25 +0300
commit161dd4165c076e263d1c7e27e4fd66a0515a197c (patch)
tree05375af755b06d6333ddfd22a2dbe6948f5278b2 /admin
parentef6a953e4f73811c036641230c744f381fa962cf (diff)
[Mac] Fix deployment of vfs plugin on mac
Fixes: #7544
Diffstat (limited to 'admin')
-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 bc4b72559..8d51b01d2 100755
--- a/admin/osx/macdeployqt.py
+++ b/admin/osx/macdeployqt.py
@@ -405,7 +405,7 @@ for plugin in QT_PLUGINS:
FixPlugin(FindQtPlugin(plugin), os.path.dirname(plugin))
# The FixPlugin function is actually for Qt plugins, but for now we abuse it for our own plugin
-FixPlugin(bundle_dir+'/Contents/PlugIns/owncloudsync_vfs_suffix.dylib', '')
+FixPlugin(bundle_dir+'/Contents/PlugIns/{bundle_name}sync_vfs_suffix.dylib'.format(bundle_name=bundle_name), '')
if LooseVersion(qt_version) >= LooseVersion("5.10.0"):
args = ['plutil', '-insert', 'LSMinimumSystemVersion', '-string', '10.10.0', os.path.join(bundle_dir, 'Contents', 'Info.plist')]