diff options
author | B. Watson <yalhcru@gmail.com> | 2017-03-21 21:46:46 -0400 |
---|---|---|
committer | David Spencer <idlemoor@slackbuilds.org> | 2017-03-25 13:29:49 +0000 |
commit | 6f8a103d9f4674e528ac89052b4a35523f0b2144 (patch) | |
tree | 29268863bed96ac1229b482cc6b35d193ad4456e /python | |
parent | b773f34e93af319706f85439031c3dc46541377a (diff) |
python/python-Levenshtein: Allow VERSION override, i486=>i586.
Signed-off-by: B. Watson <yalhcru@gmail.com>
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
Diffstat (limited to 'python')
-rw-r--r-- | python/python-Levenshtein/python-Levenshtein.SlackBuild | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/python/python-Levenshtein/python-Levenshtein.SlackBuild b/python/python-Levenshtein/python-Levenshtein.SlackBuild index 926d715308fc..07d2019e45bc 100644 --- a/python/python-Levenshtein/python-Levenshtein.SlackBuild +++ b/python/python-Levenshtein/python-Levenshtein.SlackBuild @@ -5,13 +5,13 @@ # Written by Jick Nan (jick.nan@gmail.com) PRGNAM=python-Levenshtein -VERSION=0.10.2 +VERSION=${VERSION:-0.10.2} 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 @@ -22,8 +22,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" |