Commit 11075f3c authored by Felix Paul Kühne's avatar Felix Paul Kühne

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

parent 6b9354c4
...@@ -46,6 +46,7 @@ rm -Rf $SRCROOT/build-fat/VLC.app/$PLUGINS/* ...@@ -46,6 +46,7 @@ rm -Rf $SRCROOT/build-fat/VLC.app/$PLUGINS/*
function do_lipo { function do_lipo {
file="$1" file="$1"
files="" files=""
echo "..."$file
if [ "x$PPCROOT" != "x" ]; then if [ "x$PPCROOT" != "x" ]; then
if [ -e "$PPCROOT/$file" ]; then if [ -e "$PPCROOT/$file" ]; then
files="$PPCROOT/$file $files" files="$PPCROOT/$file $files"
...@@ -67,13 +68,13 @@ function do_lipo { ...@@ -67,13 +68,13 @@ function do_lipo {
} }
echo "Installing libs" echo "Installing libs"
for i in `ls $INTELROOT/$LIBS/ | grep *.dylib` for i in `ls $INTELROOT/$LIBS/ | grep .dylib`
do do
do_lipo $LIBS/$i do_lipo $LIBS/$i
done done
echo "Installing modules" echo "Installing modules"
for i in `ls $INTELROOT/$PLUGINS/ | grep *.dylib` for i in `ls $INTELROOT/$PLUGINS/ | grep .dylib`
do do
do_lipo $PLUGINS/$i do_lipo $PLUGINS/$i
done done
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment