[#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.
This commit is contained in:
Calum Lind 2017-02-22 11:20:31 +00:00
parent b7162fab36
commit 011afe3e89
4 changed files with 4 additions and 4 deletions

View File

@ -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"

View File

@ -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"

View File

@ -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"

View File

@ -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"