diff options
author | fourtysixandtwo <fourtysixandtwo@sliderr.net> | 2022-03-18 21:19:10 -0600 |
---|---|---|
committer | B. Watson <urchlay@slackware.uk> | 2022-06-07 02:23:56 -0400 |
commit | ded33d483afadffc6cce39a5d5c052d3372e537b (patch) | |
tree | d6ac9780276754b667f899c3eb2fc771f1cb4e1d /libraries/cln | |
parent | 3005fd41ec9f77a2c4cee7fc73086ae186f4b464 (diff) |
libraries/cln: Change i486 to i586
Diffstat (limited to 'libraries/cln')
-rw-r--r-- | libraries/cln/cln.SlackBuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libraries/cln/cln.SlackBuild b/libraries/cln/cln.SlackBuild index 31b8852d03e7..49975395795a 100644 --- a/libraries/cln/cln.SlackBuild +++ b/libraries/cln/cln.SlackBuild @@ -31,7 +31,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 @@ -51,8 +51,8 @@ OUTPUT=${OUTPUT:-/tmp} set -e -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" |