diff options
author | B. Watson <yalhcru@gmail.com> | 2017-03-21 21:45:26 -0400 |
---|---|---|
committer | David Spencer <idlemoor@slackbuilds.org> | 2017-03-25 13:29:48 +0000 |
commit | 6ab4e73766e6ad4bf27d22f4c18296723ce6327d (patch) | |
tree | 710642c710eb31dadd230e56ea0db269f7369c6f /python/pyorbit/pyorbit.SlackBuild | |
parent | 8738cd4ff74760d9cd8b3f2f385eaf492bd85ecc (diff) |
python/pyorbit: 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/pyorbit/pyorbit.SlackBuild')
-rw-r--r-- | python/pyorbit/pyorbit.SlackBuild | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/python/pyorbit/pyorbit.SlackBuild b/python/pyorbit/pyorbit.SlackBuild index f3c23817e947..3a4019bf23ea 100644 --- a/python/pyorbit/pyorbit.SlackBuild +++ b/python/pyorbit/pyorbit.SlackBuild @@ -23,13 +23,13 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=pyorbit -VERSION=2.24.0 +VERSION=${VERSION:-2.24.0} 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 @@ -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" |