mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-22 21:27:22 +01:00
conditionalize attempt to copy non-existent suil modules into OS X bundle
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@13561 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
3f547aff60
commit
4eca36bb23
1 changed files with 5 additions and 2 deletions
|
|
@ -343,8 +343,11 @@ mv $Surfaces/libardour_cp*.dylib $Frameworks
|
|||
# VAMP plugins that we use
|
||||
cp $BUILD_ROOT/libs/vamp-plugins/libardourvampplugins.dylib $Frameworks
|
||||
|
||||
# Suil modules
|
||||
cp $ARDOURSTACK_ROOT/lib/suil-0/lib* $Frameworks
|
||||
# SUIL modules are all dynamically loaded, but on OS X there may or may not
|
||||
# be any (as of November 2012, there are none for OS X)
|
||||
if [ -d $ARDOURSTACKROOT/lib/suil-0 -a `ls $ARDOURSACK_ROOT/lib/suil-0/lib* 2>/dev/null | wc -l` -gt 0 ] ; then
|
||||
cp $ARDOURSTACK_ROOT/lib/suil-0/lib* $Frameworks
|
||||
fi
|
||||
|
||||
while [ true ] ; do
|
||||
missing=false
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue