libraries/configobj: i486 => i586.

This commit is contained in:
B. Watson 2016-08-19 05:14:37 -04:00 committed by Willy Sudiarto Raharjo
parent 424bf2cc9f
commit 183dadf532
No known key found for this signature in database
GPG key ID: 887B8374D7333381

View file

@ -16,9 +16,12 @@ VERSION=${VERSION:-4.7.2}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
# ARCH doesn't really matter except x86_64 will get stuff
# installed to lib64. We don't need LIBDIRSUFFIX because setup.py
# already knows to do this.
if [ -z "$ARCH" ]; then
case "$( uname -m )" in
i?86) ARCH=i486 ;;
i?86) ARCH=i586 ;;
arm*) ARCH=arm ;;
*) ARCH=$( uname -m ) ;;
esac