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/*
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
......
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