summaryrefslogtreecommitdiffstats
path: root/packaging
diff options
context:
space:
mode:
authorCalum Lind <calumlind+deluge@gmail.com>2017-02-22 11:20:31 +0000
committerCalum Lind <calumlind+deluge@gmail.com>2017-02-22 11:20:51 +0000
commit011afe3e899451059113cf105f1d961312116701 (patch)
treec0753a0ea5f47b99a4aa19b8301bf1ae33f458aa /packaging
parentb7162fab366d3492883e5354ef4c6fdb514b3ea0 (diff)
downloaddeluge-011afe3e899451059113cf105f1d961312116701.tar.gz
deluge-011afe3e899451059113cf105f1d961312116701.tar.bz2
deluge-011afe3e899451059113cf105f1d961312116701.zip
[#2879] [OSX] Fix dyld error opening file from within Deluge
- Using DYLD_LIBRARY_PATH seems to have the unintended effect of making associated apps unusable (unable to locate dylds) when opening a file from within Deluge. The workaround for now is to switch to using DYLD_FALLBACK_LIBRARY_PATH.
Diffstat (limited to 'packaging')
-rw-r--r--packaging/osx/deluge2
-rwxr-xr-xpackaging/osx/deluge-console2
-rwxr-xr-xpackaging/osx/deluge-web2
-rwxr-xr-xpackaging/osx/deluged2
4 files changed, 4 insertions, 4 deletions
diff --git a/packaging/osx/deluge b/packaging/osx/deluge
index bf8ba1ba5..023977f7d 100644
--- a/packaging/osx/deluge
+++ b/packaging/osx/deluge
@@ -18,7 +18,7 @@ bundle_lib="$bundle_res"/lib
bundle_data="$bundle_res"/share
bundle_etc="$bundle_res"/etc
-export DYLD_LIBRARY_PATH="$bundle_lib"
+export DYLD_FALLBACK_LIBRARY_PATH="$bundle_lib"
export XDG_CONFIG_DIRS="$bundle_etc"/xdg
export XDG_DATA_DIRS="$bundle_data"
export GTK_DATA_PREFIX="$bundle_res"
diff --git a/packaging/osx/deluge-console b/packaging/osx/deluge-console
index 331b72fbe..e1e20e834 100755
--- a/packaging/osx/deluge-console
+++ b/packaging/osx/deluge-console
@@ -18,7 +18,7 @@ bundle_lib="$bundle_res"/lib
bundle_data="$bundle_res"/share
bundle_etc="$bundle_res"/etc
-export DYLD_LIBRARY_PATH="$bundle_lib"
+export DYLD_FALLBACK_LIBRARY_PATH="$bundle_lib"
export XDG_CONFIG_DIRS="$bundle_etc"/xdg
export XDG_DATA_DIRS="$bundle_data"
diff --git a/packaging/osx/deluge-web b/packaging/osx/deluge-web
index 295950ab0..e66f550c0 100755
--- a/packaging/osx/deluge-web
+++ b/packaging/osx/deluge-web
@@ -18,7 +18,7 @@ bundle_lib="$bundle_res"/lib
bundle_data="$bundle_res"/share
bundle_etc="$bundle_res"/etc
-export DYLD_LIBRARY_PATH="$bundle_lib"
+export DYLD_FALLBACK_LIBRARY_PATH="$bundle_lib"
export XDG_CONFIG_DIRS="$bundle_etc"/xdg
export XDG_DATA_DIRS="$bundle_data"
diff --git a/packaging/osx/deluged b/packaging/osx/deluged
index cc22596ad..28cebc082 100755
--- a/packaging/osx/deluged
+++ b/packaging/osx/deluged
@@ -18,7 +18,7 @@ bundle_lib="$bundle_res"/lib
bundle_data="$bundle_res"/share
bundle_etc="$bundle_res"/etc
-export DYLD_LIBRARY_PATH="$bundle_lib"
+export DYLD_FALLBACK_LIBRARY_PATH="$bundle_lib"
export XDG_CONFIG_DIRS="$bundle_etc"/xdg
export XDG_DATA_DIRS="$bundle_data"