diff options
author | B. Watson <yalhcru@gmail.com> | 2017-03-21 21:45:02 -0400 |
---|---|---|
committer | David Spencer <idlemoor@slackbuilds.org> | 2017-03-25 13:29:48 +0000 |
commit | d993bc35d9d5879fffe9966cfd3b4fb53a723d13 (patch) | |
tree | 50e0f475bb5c3ab6097ca4ce53c57c2a5ca5c352 /python | |
parent | b97672dc94b1331f6a7e72fcfe95ceb2b693d7a8 (diff) | |
download | slackbuilds-d993bc35d9d5879fffe9966cfd3b4fb53a723d13.tar.gz |
python/pygtkspell: 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/pygtkspell/pygtkspell.SlackBuild | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/python/pygtkspell/pygtkspell.SlackBuild b/python/pygtkspell/pygtkspell.SlackBuild index 01775ef65e..36ad409bb4 100644 --- a/python/pygtkspell/pygtkspell.SlackBuild +++ b/python/pygtkspell/pygtkspell.SlackBuild @@ -24,13 +24,13 @@ PRGNAM=pygtkspell SRCNAM=gnome-python-extras -VERSION=2.25.3 +VERSION=${VERSION:-2.25.3} 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" |