office/smoffice2016: Fixed arch handling.

Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
This commit is contained in:
David Spencer 2017-05-17 19:58:32 +00:00 committed by David Spencer
parent 3ce48cbcea
commit 794e033474
1 changed files with 2 additions and 4 deletions

View File

@ -38,10 +38,8 @@ if [ -z "$ARCH" ]; then
fi
case "$ARCH" in
i586) ;;
x86_64) cat << EOF
To run SoftMaker Office on 64-bit machine, you will need a multilib system.
EOF
i?86) ;;
x86_64) echo "To run SoftMaker Office on 64-bit machine, you will need a multilib system."
ARCH=i586 ;;
*) echo "$ARCH is not supported."
exit 1 ;;