diff options
author | Andrew Clemons <andrew.clemons@gmail.com> | 2022-03-13 19:55:54 +1300 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2022-03-18 00:26:11 +0700 |
commit | bf116a7a175a73a6634294da3e2ace1b48df72f3 (patch) | |
tree | 337eb118d7c1294c873738ed0606d2a3792e7354 | |
parent | c6f86c4afb25924c1bf1f0c4e62d02ca7b58b0e6 (diff) |
libraries/xerces-c: Fix 32bit build.
Signed-off-by: Andrew Clemons <andrew.clemons@gmail.com>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
-rw-r--r-- | libraries/xerces-c/xerces-c.SlackBuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libraries/xerces-c/xerces-c.SlackBuild b/libraries/xerces-c/xerces-c.SlackBuild index 2fa90b74cc2c..4ef7fdb80aae 100644 --- a/libraries/xerces-c/xerces-c.SlackBuild +++ b/libraries/xerces-c/xerces-c.SlackBuild @@ -58,7 +58,7 @@ PKGTYPE=${PKGTYPE:-tgz} if [ -z "$ARCH" ]; then case "$( uname -m )" in - i?86) ARCH=i486 ;; + i?86) ARCH=i586 ;; arm*) ARCH=arm ;; *) ARCH=$( uname -m ) ;; esac @@ -83,8 +83,8 @@ WITHSAMPLES=${WITHSAMPLES:-0} WITHDOCS=${WITHDOCS:-0} ############################################################################## -if [ "$ARCH" = "i486" ]; then - SLKCFLAGS="-O2 -march=i486 -mtune=i686" +if [ "$ARCH" = "i586" ]; then + SLKCFLAGS="-O2 -march=i586 -mtune=i686" LIBDIRSUFFIX="" BITS=32 elif [ "$ARCH" = "i686" ]; then |