summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2008-07-21 22:26:28 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2008-07-21 22:26:28 +0000
commitedcadc2ffd6e5619eb026224ec21861464b420a7 (patch)
tree26e3c1b24ee46c570af4b55fd8914013337f066c /tools
parent892808d6ac0c332ffed8bc78e675a12508aef25f (diff)
process dependencies still in /opt/* when building .app
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@3638 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'tools')
-rwxr-xr-xtools/osx_packaging/osx_build4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/osx_packaging/osx_build b/tools/osx_packaging/osx_build
index c60c7d0acf..c67862c982 100755
--- a/tools/osx_packaging/osx_build
+++ b/tools/osx_packaging/osx_build
@@ -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