diff options
author | fourtysixandtwo <fourtysixandtwo@sliderr.net> | 2022-03-18 20:23:04 -0600 |
---|---|---|
committer | B. Watson <urchlay@slackware.uk> | 2022-06-07 02:23:20 -0400 |
commit | 3bd3df8832cc43455e49a5b2cfbfc35e3383cfcd (patch) | |
tree | bb325f1cde327dfe1b864b820651e6718483546a /games/sl | |
parent | 13c575a3c577153b4f70cdc04c0fc8f2623574eb (diff) |
games/sl: Change i486 to i586
Diffstat (limited to 'games/sl')
-rw-r--r-- | games/sl/sl.SlackBuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/games/sl/sl.SlackBuild b/games/sl/sl.SlackBuild index 28c2550ad247..85d043fb4b3f 100644 --- a/games/sl/sl.SlackBuild +++ b/games/sl/sl.SlackBuild @@ -34,7 +34,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 @@ 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" |