From 3e69caeda5b845112c99f1e4f08b391db75b0fd4 Mon Sep 17 00:00:00 2001 From: Valeriy Kamyshniy Date: Wed, 28 Jan 2015 01:09:54 +0200 Subject: [PATCH] =?UTF-8?q?[Summar]=20Changing=20list=20of=20export=20form?= =?UTF-8?q?at=20and=20preset=20used=20for=20Tracks=20Live.=20Changing=20no?= =?UTF-8?q?thing=20for=20other=20apps.=20For=20Tracks=20Live=20we=20need?= =?UTF-8?q?=20nothing=20but=20=E2=80=9CTracks=20Live=E2=80=9D=20export=20f?= =?UTF-8?q?ormat=20and=20preset.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tools/osx_packaging/osx_build | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/tools/osx_packaging/osx_build b/tools/osx_packaging/osx_build index d72e359aa6..5b7db1b55a 100755 --- a/tools/osx_packaging/osx_build +++ b/tools/osx_packaging/osx_build @@ -352,9 +352,15 @@ for backend in jack wavesaudio ; do done # Export Formats/Presets -for f in $BUILD_ROOT/../export/*.preset $BUILD_ROOT/../export/*.format ; do - cp "$f" $ExportFormats ; -done +if test x$APPNAME == x"TracksLive" ; then + for f in "$BUILD_ROOT/../export/Tracks Live.preset" "$BUILD_ROOT/../export/Tracks Live.format" ; do + cp "$f" $ExportFormats ; + done +else + for f in $BUILD_ROOT/../export/*.preset $BUILD_ROOT/../export/*.format ; do + cp "$f" $ExportFormats ; + done +fi # Session and Route templates #for f in $BUILD_ROOT/../templates/* ; do