Hi everyone,
I am trying to use textmate from commandline as: mate file.txt but it doesn't work anymore after adding /sw/lib to my DYLD_LIBRARY_PATH. This is annoying because I want to be able add "/sw/lib" to my path as I have some programs there I want to use. How can I fix this issue?
[CODE]dyld: Symbol not found: __cg_TIFFClientOpen Referenced from: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/ImageIO Expected in: /sw/lib/libTIFF.dylib[/CODE]
Afflictedd2 <flethuseo@...> writes:
I am trying to use textmate from commandline as: mate file.txt but it doesn't work anymore after adding /sw/lib to my DYLD_LIBRARY_PATH.
As a simple workaround, you could add:
alias mate='DYLD_LIBRARY_PATH="" mate'
to your .bash_profile. This only unsets DYLD_LIBRARY_PATH for that command; it remains as it was afterwards.