mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-21 19:42:24 +01:00
network/skype: Don't bail out automatically on x86_64
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
This commit is contained in:
parent
cfa48edbac
commit
9ae4c97c06
1 changed files with 7 additions and 0 deletions
|
@ -41,6 +41,13 @@ TMP=${TMP:-/tmp/SBo}
|
|||
PKG=$TMP/package-$PRGNAM
|
||||
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
|
||||
printf "$ARCH is not supported...\n"
|
||||
exit 1
|
||||
|
|
Loading…
Reference in a new issue