From eff4940898c8e797779788dfbe26565f160c262f Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Mon, 28 Apr 2014 20:02:31 -0400 Subject: [PATCH] do not package anything but explicitly listed backends for the bundle(s) (OS X) --- tools/osx_packaging/osx_build | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tools/osx_packaging/osx_build b/tools/osx_packaging/osx_build index 384eeeac3d..31ac58e2a2 100755 --- a/tools/osx_packaging/osx_build +++ b/tools/osx_packaging/osx_build @@ -337,7 +337,9 @@ cp $BUILD_ROOT/libs/surfaces/control_protocol/libardourcp*.dylib $Frameworks cp $BUILD_ROOT/libs/panners/*/lib*.dylib $Panners # Backends -cp $BUILD_ROOT/libs/backends/*/lib*.dylib $Backends +for backend in jack wavesaudio ; do + cp $BUILD_ROOT/libs/backends/$backend/lib*.dylib $Backends +done # Export Formats/Presets for f in $BUILD_ROOT/../export/*.preset $BUILD_ROOT/../export/*.format ; do