aboutsummaryrefslogtreecommitdiff
path: root/packages/darwin_app
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2010-04-07 21:30:11 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2010-04-07 21:30:11 +0000
commit3e9093cd18efd6be0593c9b7483199c5e4cd1707 (patch)
tree970b663647a290399e403b0f8fbf00bbda36bec4 /packages/darwin_app
parentf63848673acc9271503c6ff0ed2577defaff85c0 (diff)
fixed up echo statements for cleaned logging
svn path=/trunk/; revision=13401
Diffstat (limited to 'packages/darwin_app')
-rwxr-xr-xpackages/darwin_app/embed-MacOSX-dependencies.sh10
1 files changed, 5 insertions, 5 deletions
diff --git a/packages/darwin_app/embed-MacOSX-dependencies.sh b/packages/darwin_app/embed-MacOSX-dependencies.sh
index c560e10f..0ac4363f 100755
--- a/packages/darwin_app/embed-MacOSX-dependencies.sh
+++ b/packages/darwin_app/embed-MacOSX-dependencies.sh
@@ -26,7 +26,7 @@ for pd_darwin in `find $PD_APP_CONTENTS -name '*.pd_darwin'`; do
if [ "x$LIBS" != "x" ]; then
echo "`echo $pd_darwin | sed 's|.*/\(.*\.pd_darwin$\)|\1|'` is using:"
for lib in $LIBS; do
- echo -e "\t$lib"
+ echo " $lib"
install -d $PD_APP_LIB
install -p /sw/lib/$lib $PD_APP_LIB
new_lib=`echo $lib | sed 's|.*/\(.*\.dylib\)|\1|'`
@@ -42,9 +42,9 @@ done
for so in $PD_APP_LIB/*/*.so; do
LIBS=`otool -L $so | sed -n 's|.*/sw/lib/\(.*\.dylib\).*|\1|p'`
if [ "x$LIBS" != "x" ]; then
- echo "`echo $dylib | sed 's|.*/\(.*\.dylib\)|\1|'` is using:"
+ echo "`echo $so | sed 's|.*/\(lib.*/.*\.so\)|\1|'` is using:"
for lib in $LIBS; do
- echo -e "\t$lib"
+ echo " $lib"
new_lib=`echo $lib | sed 's|.*/\(.*\.dylib\)|\1|'`
if [ -e $PD_APP_LIB/$new_lib ]; then
echo "$PD_APP_LIB/$new_lib already exists, skipping copy."
@@ -63,7 +63,7 @@ for dylib in $PD_APP_LIB/*.dylib; do
if [ "x$LIBS" != "x" ]; then
echo "`echo $dylib | sed 's|.*/\(.*\.dylib\)|\1|'` is using:"
for lib in $LIBS; do
- echo -e "\t$lib"
+ echo " $lib"
new_lib=`echo $lib | sed 's|.*/\(.*\.dylib\)|\1|'`
if [ -e $PD_APP_LIB/$new_lib ]; then
echo "$PD_APP_LIB/$new_lib already exists, skipping copy."
@@ -84,7 +84,7 @@ for dylib in $PD_APP_LIB/*.dylib; do
if [ "x$LIBS" != "x" ]; then
echo "`echo $dylib | sed 's|.*/\(.*\.dylib\)|\1|'` is using:"
for lib in $LIBS; do
- echo -e "\t$lib"
+ echo " $lib"
new_lib=`echo $lib | sed 's|.*/\(.*\.dylib\)|\1|'`
if [ -e $PD_APP_LIB/$new_lib ]; then
echo "$PD_APP_LIB/$new_lib already exists, skipping copy."