diff options
author | fourtysixandtwo <fourtysixandtwo@sliderr.net> | 2022-03-18 21:02:24 -0600 |
---|---|---|
committer | B. Watson <urchlay@slackware.uk> | 2022-06-07 02:23:50 -0400 |
commit | 3c0b96b0af49cd2e800da8e687d716199b178437 (patch) | |
tree | b2ec0d96325883866ebb8554c9051425f90edfa9 | |
parent | 7c51a10e9259157f540b9801df9894847b9bf9b5 (diff) |
system/hntool: Change i486 to i586
-rw-r--r-- | system/hntool/hntool.SlackBuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/system/hntool/hntool.SlackBuild b/system/hntool/hntool.SlackBuild index 54791b3fd327..5b770791d856 100644 --- a/system/hntool/hntool.SlackBuild +++ b/system/hntool/hntool.SlackBuild @@ -14,7 +14,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 @@ -32,8 +32,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" |