diff options
author | David Spencer <baildon.research@googlemail.com> | 2017-05-17 19:58:32 +0000 |
---|---|---|
committer | David Spencer <idlemoor@slackbuilds.org> | 2017-05-18 20:46:19 +0100 |
commit | 794e0334740ca8a9cd99632bedd4afd6cfb92a99 (patch) | |
tree | ee36b4204dcb695323ab3cadaadf61296e860dc4 /office/smoffice2016 | |
parent | 3ce48cbcea71ca135735cb0d918628db2e6a938f (diff) | |
download | slackbuilds-794e0334740ca8a9cd99632bedd4afd6cfb92a99.tar.gz |
office/smoffice2016: Fixed arch handling.
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
Diffstat (limited to 'office/smoffice2016')
-rw-r--r-- | office/smoffice2016/smoffice2016.SlackBuild | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/office/smoffice2016/smoffice2016.SlackBuild b/office/smoffice2016/smoffice2016.SlackBuild index dd612c7350..9f766a39ba 100644 --- a/office/smoffice2016/smoffice2016.SlackBuild +++ b/office/smoffice2016/smoffice2016.SlackBuild @@ -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 ;; |