summaryrefslogtreecommitdiffstats
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:24:45 +0000
commit7f01dc909e333ccb04d550801fc40100aad335cc (patch)
tree711cad6809f0879284c16f1fecce6bc5a1a2529f
parent10ebf9b0b0a75b30e4ea7526a6f44619b91dfa60 (diff)
downloaddeluge-7f01dc909e333ccb04d550801fc40100aad335cc.tar.gz
deluge-7f01dc909e333ccb04d550801fc40100aad335cc.tar.bz2
deluge-7f01dc909e333ccb04d550801fc40100aad335cc.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.
-rw-r--r--osx/deluge2
-rwxr-xr-xosx/deluge-console2
-rwxr-xr-xosx/deluge-web2
-rwxr-xr-xosx/deluged2
4 files changed, 4 insertions, 4 deletions
diff --git a/osx/deluge b/osx/deluge
index bf8ba1ba5..023977f7d 100644
--- a/osx/deluge
+++ b/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/osx/deluge-console b/osx/deluge-console
index 331b72fbe..e1e20e834 100755
--- a/osx/deluge-console
+++ b/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/osx/deluge-web b/osx/deluge-web
index 295950ab0..e66f550c0 100755
--- a/osx/deluge-web
+++ b/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/osx/deluged b/osx/deluged
index cc22596ad..28cebc082 100755
--- a/osx/deluged
+++ b/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"