Make sure that MacPorts never gets to the DYLD_LIBRARY_PATH
--HG-- branch : bgschaid/minorAdditionsBranch
This commit is contained in:
parent
7ac8e597de
commit
bb0d8e90a6
1 changed files with 5 additions and 1 deletions
|
@ -49,7 +49,11 @@ _foamAddLib()
|
|||
export LD_LIBRARY_PATH=$1:$LD_LIBRARY_PATH
|
||||
if [ "$WM_ARCH_BASE" = "darwin" ]
|
||||
then
|
||||
export DYLD_LIBRARY_PATH=$1:$DYLD_LIBRARY_PATH
|
||||
# do NOT add the lib of MacPort as this might break programs
|
||||
if [ "$1" != "/opt/local/lib" ]
|
||||
then
|
||||
export DYLD_LIBRARY_PATH=$1:$DYLD_LIBRARY_PATH
|
||||
fi
|
||||
fi
|
||||
shift
|
||||
done
|
||||
|
|
Reference in a new issue