diff options
author | fourtysixandtwo <fourtysixandtwo@sliderr.net> | 2022-03-18 21:02:33 -0600 |
---|---|---|
committer | B. Watson <urchlay@slackware.uk> | 2022-06-07 02:23:54 -0400 |
commit | e580f2e342337d361c72e5a7313a89cc414748f5 (patch) | |
tree | 194ffc53c3c2d6f8c1eb430ad0ffb30b1d031beb /system/xrestop | |
parent | 93a8ef63a73ae871b3d71c524a4d1c8499703326 (diff) | |
download | slackbuilds-e580f2e342337d361c72e5a7313a89cc414748f5.tar.gz |
system/xrestop: Change i486 to i586
Diffstat (limited to 'system/xrestop')
-rw-r--r-- | system/xrestop/xrestop.SlackBuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/system/xrestop/xrestop.SlackBuild b/system/xrestop/xrestop.SlackBuild index 36a960c591..38fc463bc2 100644 --- a/system/xrestop/xrestop.SlackBuild +++ b/system/xrestop/xrestop.SlackBuild @@ -32,7 +32,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 @@ -52,8 +52,8 @@ OUTPUT=${OUTPUT:-/tmp} set -eu -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" |