summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorJesse Chappell <jesse@essej.net>2008-07-30 01:33:15 +0000
committerJesse Chappell <jesse@essej.net>2008-07-30 01:33:15 +0000
commite5462924682818a332f67604c447228b1bf88d43 (patch)
tree4e355921c13b6d34ac046db2ced657069fd1865c /tools
parent5923351097a5ba46a43e9eeb716c207be3565511 (diff)
committed build changes needed for leopard build
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@3650 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 452ba3988e..12337fb278 100755
--- a/tools/osx_packaging/app_build.rb
+++ b/tools/osx_packaging/app_build.rb
@@ -81,7 +81,7 @@ $stdout.print("Copying libs to #{libdir} ...\n");
results.each do |s|
s = s.split[0]
# exclude frameworks, system libraries, X11 libraries, and libjack.
- unless s =~ /System|\/usr\/lib|\/usr\/X11R6|libjack|:$/ then
+ unless s =~ /System|\/usr\/lib|\/usr\/X11|Jackmp|libjack|:$/ then
#$stdout.print("Copying #{s}\n")
`cp #{s} #{odir}/#{libdir}/`
end
@@ -94,7 +94,7 @@ results.uniq!
results.each do |s|
s = s.split[0]
# exclude frameworks, system libraries, X11 libraries, and libjack.
- unless s =~ /System|\/usr\/lib|\/usr\/X11R6|libjack|:$/ then
+ unless s =~ /System|\/usr\/lib|\/usr\/X11|Jackmp|libjack|:$/ then
sbase = File.basename(s)
targfile = "#{odir}/#{libdir}/#{sbase}"
#$stdout.print("Targ is : " + targfile + "\n")