diff options
author | fourtysixandtwo <fourtysixandtwo@sliderr.net> | 2022-03-18 20:17:11 -0600 |
---|---|---|
committer | B. Watson <urchlay@slackware.uk> | 2022-06-07 02:23:16 -0400 |
commit | 1b4a18d1ac15f980605c8561066b58d4d44f3eae (patch) | |
tree | 2538fb83d64322eaf1425481e4c965189209c7a3 /development | |
parent | a274afe7979374c487d9ad38215eee331d3fe0f4 (diff) |
development/premake: Change i486 to i586
Diffstat (limited to 'development')
-rw-r--r-- | development/premake/premake.SlackBuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/development/premake/premake.SlackBuild b/development/premake/premake.SlackBuild index a54e066db8e6..8c8ffd206670 100644 --- a/development/premake/premake.SlackBuild +++ b/development/premake/premake.SlackBuild @@ -34,7 +34,7 @@ SRC_VERSION=$(echo $VERSION | tr _ -) 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" |