diff options
author | fourtysixandtwo <fourtysixandtwo@sliderr.net> | 2022-03-18 20:17:04 -0600 |
---|---|---|
committer | B. Watson <urchlay@slackware.uk> | 2022-06-07 02:23:13 -0400 |
commit | fcf515d66fbbea632a8c4d2a37144b696ff751d3 (patch) | |
tree | f05155aeec67296a234da5f12a7493a284959eb5 /development/avrdude | |
parent | 100b4cc504f00864773e0075046703c3889d52e3 (diff) |
development/avrdude: Change i486 to i586
Diffstat (limited to 'development/avrdude')
-rw-r--r-- | development/avrdude/avrdude.SlackBuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/development/avrdude/avrdude.SlackBuild b/development/avrdude/avrdude.SlackBuild index efc4d430f6e1..b70684e25391 100644 --- a/development/avrdude/avrdude.SlackBuild +++ b/development/avrdude/avrdude.SlackBuild @@ -16,7 +16,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 @@ -34,8 +34,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" |