Skip to content
Snippets Groups Projects
Commit 5de94e48 authored by Adam Vandenberg's avatar Adam Vandenberg
Browse files

doctor: check for DYLD_FALLBACK_LIBRARY_PATH

parent 7a7e3b5f
No related branches found
No related tags found
No related merge requests found
......@@ -573,7 +573,7 @@ def check_for_config_scripts
end
end
def check_for_dyld_vars
def check_for_DYLD_LIBRARY_PATH
if ENV['DYLD_LIBRARY_PATH']
<<-EOS.undent
Setting DYLD_LIBRARY_PATH can break dynamic linking.
......@@ -582,6 +582,15 @@ def check_for_dyld_vars
end
end
def check_for_DYLD_FALLBACK_LIBRARY_PATH
if ENV['DYLD_FALLBACK_LIBRARY_PATH']
<<-EOS.undent
Setting DYLD_FALLBACK_LIBRARY_PATH can break dynamic linking.
You should probably unset it.
EOS
end
end
def check_for_DYLD_INSERT_LIBRARIES
if ENV['DYLD_INSERT_LIBRARIES']
<<-EOS.undent
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment