summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorJesse Chappell <jesse@essej.net>2007-01-19 12:54:16 +0000
committerJesse Chappell <jesse@essej.net>2007-01-19 12:54:16 +0000
commite891a223fa7000bf625fb2ddae606b887e55649c (patch)
treee9cd5539a95bc3d6662e22925d6e34c2516eaf03 /tools
parentf4fe4d36b1db9d5c267273e2f772e9d6b3746d1c (diff)
updated app build
git-svn-id: svn://localhost/ardour2/trunk@1363 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'tools')
-rwxr-xr-xtools/osx_packaging/app_build.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/osx_packaging/app_build.rb b/tools/osx_packaging/app_build.rb
index 4cab635034..be6a4e0917 100755
--- a/tools/osx_packaging/app_build.rb
+++ b/tools/osx_packaging/app_build.rb
@@ -3,7 +3,7 @@
# Ruby script for pulling together a MacOSX app bundle.
# it will be either powerpc or i386
-versionline = `grep -m 1 '^version =' ../../SConstruct`
+versionline = `grep -m 1 '^ardour_version =' ../../SConstruct`
version = versionline.split(" = ")[1].chomp().slice(1..-2)
$stdout.printf("Version is %s\n", version)
@@ -57,7 +57,7 @@ end
odir = Dir.getwd
Dir.chdir("../..")
-result = `otool -L gtk2_ardour/ardour.bin`
+result = `otool -L gtk2_ardour/ardour-#{version}`
results = result.split("\n")
results.delete_at(0)