network/skype: Don't bail out automatically on x86_64

Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
This commit is contained in:
mario 2010-10-19 23:43:53 -05:00 committed by Erik Hanson
parent cfa48edbac
commit 9ae4c97c06

View file

@ -41,6 +41,13 @@ TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp} OUTPUT=${OUTPUT:-/tmp}
# Keep going on 64bit since user might have/want 32bit compatibility...
if [ "$ARCH" == "x86_64" ]; then
printf "$ARCH is not supported - you will need 32bit compatibility...\n"
ARCH=i486
fi
# Afaik everything else is still not supported.
if [ "$ARCH" != "i486" ]; then if [ "$ARCH" != "i486" ]; then
printf "$ARCH is not supported...\n" printf "$ARCH is not supported...\n"
exit 1 exit 1