summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2013-10-16 21:28:41 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2013-10-16 21:28:41 -0400
commitda5a49067839ec32a016bf1b66c3808ad7cbf699 (patch)
treeef24b241d19bd597c78d764df4756fae5b4e48ca /tools
parentcb3abec9665b7a69702294e5a6ffdd26f54885c3 (diff)
remember to fix up libnames in backends, missed the 3.5 tag but this is just the build script
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 bab4906f2e..276eb90fe5 100755
--- a/tools/osx_packaging/osx_build
+++ b/tools/osx_packaging/osx_build
@@ -351,7 +351,7 @@ cp $ARDOURSTACK_ROOT/lib/suil-0/lib* $Frameworks
while [ true ] ; do
missing=false
- for file in $APPROOT/MacOS/* $Frameworks/* $Frameworks/modules/* $Panners/*.dylib $Surfaces/*.dylib $Plugins/*.so ; do
+ for file in $APPROOT/MacOS/* $Frameworks/* $Frameworks/modules/* $Panners/*.dylib $Backends/*.dylib $Surfaces/*.dylib $Plugins/*.so ; do
if ! file $file | grep -qs Mach-O ; then
continue
fi
@@ -438,7 +438,7 @@ done
echo "Fixing up library names ..."
# now do the same for all the libraries we include
-for libdir in $Frameworks $Frameworks/modules $Surfaces $Panners ; do
+for libdir in $Frameworks $Frameworks/modules $Surfaces $Panners $Backends ; do
libbase=`basename $libdir`