process dependencies still in /opt/* when building .app

git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@3638 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2008-07-21 22:26:28 +00:00
parent 892808d6ac
commit edcadc2ffd

View file

@ -173,10 +173,10 @@ while [ true ] ; do
continue
fi
if test x$WITH_JACK != x ; then
deps=`otool -L $file | awk '{print $1}' | egrep "($GTKQUARTZ_ROOT|/local/|libs/)"`
deps=`otool -L $file | awk '{print $1}' | egrep "($GTKQUARTZ_ROOT|/opt/|/local/|libs/)"`
else
# do not include libjack
deps=`otool -L $file | awk '{print $1}' | egrep "($GTKQUARTZ_ROOT|/local/|libs/)" | grep -v 'libjack\.'`
deps=`otool -L $file | awk '{print $1}' | egrep "($GTKQUARTZ_ROOT|/opt/|/local/|libs/)" | grep -v 'libjack\.'`5D
fi
echo -n "."
for dep in $deps ; do