summaryrefslogtreecommitdiffstats
path: root/network
diff options
context:
space:
mode:
author mario2010-10-20 06:43:53 +0200
committer Erik Hanson2010-10-20 17:50:24 +0200
commit9ae4c97c060e7913b3da839fa4be21c3c0f8927b (patch)
tree7ee6caf04be146e9a1415c17ea53899aead610b2 /network
parentcfa48edbacb46588e2771e8fb2c3e3669e2d139b (diff)
downloadslackbuilds-9ae4c97c060e7913b3da839fa4be21c3c0f8927b.tar.gz
network/skype: Don't bail out automatically on x86_64
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'network')
-rw-r--r--network/skype/skype.SlackBuild7
1 files changed, 7 insertions, 0 deletions
diff --git a/network/skype/skype.SlackBuild b/network/skype/skype.SlackBuild
index 289b65f125..551de3b4d6 100644
--- a/network/skype/skype.SlackBuild
+++ b/network/skype/skype.SlackBuild
@@ -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