From 400148b369b16f8abcc197b2d5d9a7468eeb4df7 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Tue, 17 Feb 2015 21:36:52 +0100 Subject: [PATCH] =?UTF-8?q?OSX=20package:=20don=E2=80=99t=20copy=20dylib?= =?UTF-8?q?=20itself=20to=20libdir.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit fixes duplicate panner, backend etc libs in bundle. --- tools/osx_packaging/osx_build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/osx_packaging/osx_build b/tools/osx_packaging/osx_build index e3263dd3d3..300a731799 100755 --- a/tools/osx_packaging/osx_build +++ b/tools/osx_packaging/osx_build @@ -422,7 +422,7 @@ while [ true ] ; do strip -u -r -arch all $file &>/dev/null fi - deps=`otool -L $file | awk '{print $1}' | egrep "($GTKSTACK_ROOT|$ARDOURSTACK_ROOT|/opt/|/local/|libs/)" | grep -v 'libjack\.'` + deps=`otool -L $file | awk '{print $1}' | egrep "($GTKSTACK_ROOT|$ARDOURSTACK_ROOT|/opt/|/local/|libs/)" | grep -v 'libjack\.' | grep -v "$(basename $file)"` # echo -n "." for dep in $deps ; do base=`basename $dep`