diff options
author | B. Watson <yalhcru@gmail.com> | 2017-03-21 15:10:48 -0400 |
---|---|---|
committer | David Spencer <idlemoor@slackbuilds.org> | 2017-03-25 13:29:11 +0000 |
commit | 91b2a967bea5db987c3b0aa06c856339e0efc869 (patch) | |
tree | 008d483ae6d4d9f040d7a441ab2539e30dd3d48f /office/antiword | |
parent | 432d711986523c6f28f50bce7119929835996a6c (diff) | |
download | slackbuilds-91b2a967bea5db987c3b0aa06c856339e0efc869.tar.gz |
office/antiword: Allow VERSION override, i486=>i586.
Signed-off-by: B. Watson <yalhcru@gmail.com>
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
Diffstat (limited to 'office/antiword')
-rw-r--r-- | office/antiword/antiword.SlackBuild | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/office/antiword/antiword.SlackBuild b/office/antiword/antiword.SlackBuild index dcceb2e3d0..a9eda07538 100644 --- a/office/antiword/antiword.SlackBuild +++ b/office/antiword/antiword.SlackBuild @@ -24,13 +24,13 @@ # Modified by the SlackBuilds.org Project PRGNAM=antiword -VERSION=0.37 +VERSION=${VERSION:-0.37} BUILD=${BUILD:-1} 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 @@ -41,8 +41,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" |