summaryrefslogtreecommitdiff
path: root/tools/osx_packaging
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2014-07-11 09:59:36 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2014-07-11 09:59:36 -0400
commit7464b3f9fab1398d93a486e8d4c5469f9b8f7fcb (patch)
tree1c24dc1e5b3343c8e3b5e9a38cc6ea8e58b1a3ae /tools/osx_packaging
parent94e084162590da9f61653224362e9da4ce8e3e13 (diff)
correctly copy vfork exec wrapper into right location in binary bundles on OS X and Linux
Diffstat (limited to 'tools/osx_packaging')
-rwxr-xr-xtools/osx_packaging/osx_build4
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/osx_packaging/osx_build b/tools/osx_packaging/osx_build
index 7726b3d9a2..2031c71f19 100755
--- a/tools/osx_packaging/osx_build
+++ b/tools/osx_packaging/osx_build
@@ -109,6 +109,7 @@ ExportFormats=$Shared/export
Templates=$Shared/templates
PatchFiles=$Shared/patchfiles
MackieControl=$Shared/mcp
+VFork=$Frameworks/vfork
if [ x$PRINT_SYSDEPS != x ] ; then
#
@@ -145,6 +146,7 @@ mkdir -p $Frameworks/modules
mkdir -p $Etc
mkdir -p $MackieControl
mkdir -p $PatchFiles
+mkdir -p $VFork
# maybe set variables
env=""
@@ -382,7 +384,7 @@ cp $BUILD_ROOT/libs/fst/ardour-vst-scanner* $Frameworks/ || true
# vfork wrapper
mkdir $Frameworks/vfork
-cp $BUILD_ROOT/libs/vfork/ardour-exec-wrapper $Frameworks/vfork/
+cp $BUILD_ROOT/libs/vfork/ardour-exec-wrapper $VFork
while [ true ] ; do