libraries/PyYAML: Switch to i586.

Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
This commit is contained in:
David Woodfall 2018-03-27 12:01:08 +00:00 committed by Willy Sudiarto Raharjo
parent c710fa26db
commit ed076e9685
2 changed files with 5 additions and 6 deletions

View File

@ -1,6 +1,6 @@
#!/bin/sh
# Slackware build script for python-PyYAML
# Slackware build script for PyYAML
# Copyright 2010 David Woodfall <dave@dawoodfall.net>
# All rights reserved.
#
@ -23,12 +23,12 @@
PRGNAM=PyYAML
VERSION=${VERSION:-3.11}
BUILD=${BUILD:-1}
BUILD=${BUILD:-2}
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
@ -39,8 +39,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"

View File

@ -3,4 +3,3 @@ pyyaml (YAML parser and emitter for Python)
YAML is a data serialization format designed for human readability
and interaction with scripting languages. PyYAML is a YAML parser and
emitter for Python.