summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2020-01-25 11:35:17 +0100
committerRobin Gareus <robin@gareus.org>2020-01-25 11:35:17 +0100
commit8ecfee2c94dac3589fb2ae6c8f80d2fb421e1bf3 (patch)
treee818f3b95e9124c7ed116f73f5ab1d167000bfcc /tools
parent4fe30364951ea46b93e3c93acbaf2f777343d131 (diff)
Fix OSX/PPC packaging
This partially reverts 5a841ef462 to fix issues with egrep "libstdc++.6.dylib"
Diffstat (limited to 'tools')
-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 df6a2864a7..f890cfe971 100755
--- a/tools/osx_packaging/osx_build
+++ b/tools/osx_packaging/osx_build
@@ -472,7 +472,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/$STDCPP)" | grep -v 'libjack\.' | egrep -v "$(basename $file .dylib).*.dylib"`
+ deps=`otool -L $file | awk '{print $1}' | egrep "($GTKSTACK_ROOT|$ARDOURSTACK_ROOT|/opt/|/local/|libs/$STDCPP)" | grep -v 'libjack\.' | grep -v "$(basename $file)"`
# echo -n "."
for dep in $deps ; do
base=`basename $dep`