13
0

OSX package: don’t copy dylib itself to libdir.

fixes duplicate panner, backend etc libs in bundle.
This commit is contained in:
Robin Gareus 2015-02-17 21:36:52 +01:00
parent 6f3a253172
commit 400148b369

View File

@ -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`