diff options
author | fourtysixandtwo <fourtysixandtwo@sliderr.net> | 2022-03-18 21:02:20 -0600 |
---|---|---|
committer | B. Watson <urchlay@slackware.uk> | 2022-06-07 02:23:48 -0400 |
commit | fa57d69fc72d31c6da76b42a40f6e117576114d8 (patch) | |
tree | e440dba8280e84032db6e20bc83203f5d08aca12 /system/detox | |
parent | 6f628b6428de67c104b2bb15df58b5ab54f9dacc (diff) | |
download | slackbuilds-fa57d69fc72d31c6da76b42a40f6e117576114d8.tar.gz |
system/detox: Change i486 to i586
Diffstat (limited to 'system/detox')
-rw-r--r-- | system/detox/detox.SlackBuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/system/detox/detox.SlackBuild b/system/detox/detox.SlackBuild index e267c044c7..f8a3f57be8 100644 --- a/system/detox/detox.SlackBuild +++ b/system/detox/detox.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 @@ -50,8 +50,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" |