diff options
author | Hunter Sezen <orbea@fredslev.dk> | 2018-04-08 11:33:03 +0100 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2018-04-14 07:06:24 +0700 |
commit | 1ed150c0911ac30906d2d1ccf1a76cd204a95b86 (patch) | |
tree | 98d519d2fd0fbcc54e3f704793ac6cd689c8c7d5 /office/mythes/mythes.SlackBuild | |
parent | 1829132667d12132edc9f2f0bf8457bb29be0e7f (diff) |
office/mythes: Minor fixes, updated download.
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
Diffstat (limited to 'office/mythes/mythes.SlackBuild')
-rw-r--r-- | office/mythes/mythes.SlackBuild | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/office/mythes/mythes.SlackBuild b/office/mythes/mythes.SlackBuild index a99732dd9063d..649d2b012d84a 100644 --- a/office/mythes/mythes.SlackBuild +++ b/office/mythes/mythes.SlackBuild @@ -2,7 +2,7 @@ # Slackware build script for MyThes -# Copyright 2015 Hunter Sezen California, USA +# Copyright 2015, 2018 Hunter Sezen California, USA # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -29,7 +29,7 @@ TAG=${TAG:-_SBo} if [ -z "$ARCH" ]; then case "$( uname -m )" in - i?86) ARCH=i486 ;; + i?86) ARCH=i586 ;; arm*) ARCH=arm ;; *) ARCH=$( uname -m ) ;; esac @@ -40,8 +40,8 @@ TMP=${TMP:-/tmp/SBo} PKG=$TMP/package-$PRGNAM OUTPUT=${OUTPUT:-/tmp} -if [ "$ARCH" = "i486" ]; then - SLKCFLAGS="-O2 -march=i486 -mtune=i686" +if [ "$ARCH" = "i586" ]; then + SLKCFLAGS="-O2 -march=i586 -mtune=i686" LIBDIRSUFFIX="" elif [ "$ARCH" = "i686" ]; then SLKCFLAGS="-O2 -march=i686 -mtune=i686" @@ -54,7 +54,7 @@ else LIBDIRSUFFIX="" fi -set -e +set -eu rm -rf $PKG mkdir -p $TMP $PKG $OUTPUT |