process dependencies still in /opt/* when building .app
authorPaul Davis <paul@linuxaudiosystems.com>
Mon, 21 Jul 2008 22:26:28 +0000 (22:26 +0000)
committerPaul Davis <paul@linuxaudiosystems.com>
Mon, 21 Jul 2008 22:26:28 +0000 (22:26 +0000)
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@3638 d708f5d6-7413-0410-9779-e7cbd77b26cf

tools/osx_packaging/osx_build

index c60c7d0acfa0b2f882e3e22f5615094ba18e5b30..c67862c982b03056fd63db07c66b08cbc23838ed 100755 (executable)
@@ -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