[Summar] Changing list of export format and preset used for Tracks Live. Changing nothing for other apps. For Tracks Live we need nothing but “Tracks Live” export format and preset.

This commit is contained in:
Valeriy Kamyshniy 2015-01-28 01:09:54 +02:00
parent 34a3e8b49c
commit 3e69caeda5

View file

@ -352,9 +352,15 @@ for backend in jack wavesaudio ; do
done done
# Export Formats/Presets # Export Formats/Presets
for f in $BUILD_ROOT/../export/*.preset $BUILD_ROOT/../export/*.format ; do if test x$APPNAME == x"TracksLive" ; then
cp "$f" $ExportFormats ; for f in "$BUILD_ROOT/../export/Tracks Live.preset" "$BUILD_ROOT/../export/Tracks Live.format" ; do
done 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 # Session and Route templates
#for f in $BUILD_ROOT/../templates/* ; do #for f in $BUILD_ROOT/../templates/* ; do