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:
authorDominik Schmidt <dev@dominik-schmidt.de>2018-10-10 13:47:36 +0300
committerDominik Schmidt <domme@tomahawk-player.org>2018-10-11 14:09:35 +0300
commitb5a06361b9bec64537da7d4fdceb00b63c8468ac (patch)
tree2e150b2b4705cf338b8a16829ac543fcedb7572b /admin
parentf8e7df42a80c69c39070447066d047dcf8c0b9f6 (diff)
Don't look for Qt plugins or libraries in system dirs.
Diffstat (limited to 'admin')
-rwxr-xr-xadmin/osx/macdeployqt.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/admin/osx/macdeployqt.py b/admin/osx/macdeployqt.py
index 4685038c1..ab9e7fc1e 100755
--- a/admin/osx/macdeployqt.py
+++ b/admin/osx/macdeployqt.py
@@ -32,7 +32,9 @@ FRAMEWORK_SEARCH_PATH=[
os.path.join(os.environ['HOME'], 'Library/Frameworks')
]
-LIBRARY_SEARCH_PATH=['/usr/local/lib', '.']
+LIBRARY_SEARCH_PATH=[
+ '.'
+]
QT_PLUGINS = [
'sqldrivers/libqsqlite.dylib',
@@ -44,8 +46,6 @@ QT_PLUGINS = [
]
QT_PLUGINS_SEARCH_PATH=[
-# os.path.join(os.environ['QTDIR'], 'plugins'),
- '/usr/local/Cellar/qt/5.2.1/plugins',
]