[#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:
parent
b7162fab36
commit
011afe3e89
|
@ -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"
|
||||
|
|
|
@ -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"
|
||||
|
||||
|
|
|
@ -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"
|
||||
|
||||
|
|
|
@ -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"
|
||||
|
||||
|
|
Loading…
Reference in New Issue