summaryrefslogtreecommitdiff
path: root/tools/osx_packaging
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2015-07-22 11:50:26 +0200
committerRobin Gareus <robin@gareus.org>2015-07-22 11:50:26 +0200
commit674e7271213e629327c3c3064dad11e5311336f9 (patch)
tree1b36c1aeba2c3b80d16f048f9a6a08b64999bde5 /tools/osx_packaging
parentf7e10d0fe81d445bcf8e388f2d6f7ffc6461df4f (diff)
OSX bundle libstdc++ for 10.5 support
see #6456 and http://stackoverflow.com/questions/6365772/unable-to-run-an-application-compiled-on-os-x-snow-leopard-10-6-7-on-another-m hopefully this won’t break plugins which may link against against the /usr/lib/ version. we’ll see.
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 6ee39f626e..a18cc71f5f 100755
--- a/tools/osx_packaging/osx_build
+++ b/tools/osx_packaging/osx_build
@@ -419,7 +419,7 @@ while [ true ] ; do
strip -u -r -arch all $file &>/dev/null
fi
- deps=`otool -L $file | awk '{print $1}' | egrep "($GTKSTACK_ROOT|$ARDOURSTACK_ROOT|/opt/|/local/|libs/)" | grep -v 'libjack\.' | grep -v "$(basename $file)"`
+ deps=`otool -L $file | awk '{print $1}' | egrep "($GTKSTACK_ROOT|$ARDOURSTACK_ROOT|/opt/|/local/|libs/|libstdc\+\+)" | grep -v 'libjack\.' | grep -v "$(basename $file)"`
# echo -n "."
for dep in $deps ; do
base=`basename $dep`