summaryrefslogtreecommitdiff
path: root/tools/osx_packaging
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2012-05-30 15:34:25 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2012-05-30 15:34:25 +0000
commitb4b74394897fc141c5e90c81bf04e5c2f3974d43 (patch)
tree6475b663c48c866a20abfbd4695b68c405543769 /tools/osx_packaging
parent5d10ef90b816b31b976e4af57250ff2a3cf0ad5d (diff)
fix osx build script when the path to the plugin folder contains spaces
git-svn-id: svn://localhost/ardour2/branches/3.0@12492 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'tools/osx_packaging')
-rwxr-xr-xtools/osx_packaging/osx_build2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/osx_packaging/osx_build b/tools/osx_packaging/osx_build
index 17e86d58b7..2d2328342c 100755
--- a/tools/osx_packaging/osx_build
+++ b/tools/osx_packaging/osx_build
@@ -280,7 +280,7 @@ if test x$WITH_LADSPA != x ; then
else
plugdir=ladspa
fi
- if [ -d $plugdir -a x`ls $plugdir` != x ] ; then
+ if [ -d $plugdir -a "x$(ls $plugdir)" != x ] ; then
echo "Copying `ls $plugdir | wc -l` plugins ..."
cp -r $plugdir/* $Plugins
fi