[vlc-commits] commit: ub.sh: Fixed 2 typos which prevented proper execution and added a bit more verbosity ( Felix Paul Kühne )

git at videolan.org git at videolan.org
Fri Jul 23 13:00:39 CEST 2010


vlc/vlc-1.1 | branch: master | Felix Paul Kühne <fkuehne at videolan.org> | Fri Jul 23 13:00:36 2010 +0200| [11075f3ca4e78bb3d83f03978703a381da918256] | committer: Felix Paul Kühne 

ub.sh: Fixed 2 typos which prevented proper execution and added a bit more verbosity

> http://git.videolan.org/gitweb.cgi/vlc/vlc-1.1.git/?a=commit;h=11075f3ca4e78bb3d83f03978703a381da918256
---

 extras/package/macosx/ub.sh |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/extras/package/macosx/ub.sh b/extras/package/macosx/ub.sh
index 5920502..2d58f26 100644
--- a/extras/package/macosx/ub.sh
+++ b/extras/package/macosx/ub.sh
@@ -46,6 +46,7 @@ rm -Rf $SRCROOT/build-fat/VLC.app/$PLUGINS/*
 function do_lipo {
     file="$1"
     files=""
+    echo "..."$file
     if [ "x$PPCROOT" != "x" ]; then
         if [ -e "$PPCROOT/$file" ]; then
             files="$PPCROOT/$file $files"
@@ -67,13 +68,13 @@ function do_lipo {
 }
 
 echo "Installing libs"
-for i in `ls $INTELROOT/$LIBS/ | grep *.dylib`
+for i in `ls $INTELROOT/$LIBS/ | grep .dylib`
 do
     do_lipo $LIBS/$i
 done
 
 echo "Installing modules"
-for i in `ls $INTELROOT/$PLUGINS/ | grep *.dylib`
+for i in `ls $INTELROOT/$PLUGINS/ | grep .dylib`
 do
     do_lipo $PLUGINS/$i
 done



More information about the vlc-commits mailing list