more readable build script

db4
Doug Coleman 2008-09-13 22:18:56 -05:00
parent cd10ca1b23
commit 0895201f27
1 changed files with 4 additions and 12 deletions

View File

@ -289,18 +289,10 @@ parse_build_info() {
ARCH=`echo $1 | cut -d '-' -f 2`
WORD=`echo $1 | cut -d '-' -f 3`
if [[ $OS == linux && $ARCH == ppc ]] ; then
WORD=32
fi
if [[ $OS == linux && $ARCH == arm ]] ; then
WORD=32
fi
if [[ $OS == macosx && $ARCH == ppc ]] ; then
WORD=32
fi
if [[ $OS == wince && $ARCH == arm ]] ; then
WORD=32
fi
if [[ $OS == linux && $ARCH == ppc ]] ; then WORD=32; fi
if [[ $OS == linux && $ARCH == arm ]] ; then WORD=32; fi
if [[ $OS == macosx && $ARCH == ppc ]] ; then WORD=32; fi
if [[ $OS == wince && $ARCH == arm ]] ; then WORD=32; fi
$ECHO "OS=$OS"
$ECHO "ARCH=$ARCH"