summaryrefslogtreecommitdiff
path: root/tools/osx_packaging/osx_build
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2007-10-05 00:33:23 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2007-10-05 00:33:23 +0000
commit17ebbb9d3f2f361479da8f150495ec0d773fe153 (patch)
treeedd66e0e42ba4149a9c7d3ef525d857225aed470 /tools/osx_packaging/osx_build
parent1bded229ccb8e8976fcd702e5417c3565980d5c7 (diff)
changes related to OS X main menu & accelerators, plus osx_build script
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@2514 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'tools/osx_packaging/osx_build')
-rwxr-xr-xtools/osx_packaging/osx_build6
1 files changed, 5 insertions, 1 deletions
diff --git a/tools/osx_packaging/osx_build b/tools/osx_packaging/osx_build
index f6fde43e1e..d0f65f8058 100755
--- a/tools/osx_packaging/osx_build
+++ b/tools/osx_packaging/osx_build
@@ -7,6 +7,7 @@ GTKQUARTZ_ROOT=/opt/gtk
SAE=
WITH_JACK=1
WITH_LADSPA=1
+STRIP=1
while [ $# -gt 0 ] ; do
echo "arg = $1"
@@ -14,6 +15,7 @@ while [ $# -gt 0 ] ; do
--sae) SAE=1 ; shift ;;
--nojack) WITH_JACK= ; shift ;;
--noladpsa) WITH_LADSPA= ; shift ;;
+ --nostrip) STRIP= ; shift ;;
esac
done
@@ -66,7 +68,9 @@ cp -R Resources $APPROOT
echo "Copying ardour executable ...."
cp ../../gtk2_ardour/ardour-$version $APPROOT/MacOS/Ardour2
-strip $APPROOT/MacOS/Ardour2
+if test x$STRIP != x ; then
+ strip $APPROOT/MacOS/Ardour2
+fi
if test x$WITH_JACK != x ; then
cp /usr/local/lib/jack/jack_coreaudio.so $Frameworks
cp /usr/local/bin/jackd $APPROOT/MacOS