diff options
Diffstat (limited to 'network/webex/webex.SlackBuild')
-rw-r--r-- | network/webex/webex.SlackBuild | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/network/webex/webex.SlackBuild b/network/webex/webex.SlackBuild index 6a62225a52d2..51ef1c42c947 100644 --- a/network/webex/webex.SlackBuild +++ b/network/webex/webex.SlackBuild @@ -31,10 +31,12 @@ TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} if [ -z "$ARCH" ]; then - case "$ARCH" in - i?86) ARCH=i386 ;; - *) ARCH=$( uname -m ) ;; - esac + ARCH=$( uname -m ) +fi + +if [ "$ARCH" != "x86_64" ]; then + echo "$ARCH architecture is unsupported." >/dev/stderr + exit 1 fi # If the variable PRINT_PACKAGE_NAME is set, then this script will report what |