diff options
author | fourtysixandtwo <fourtysixandtwo@sliderr.net> | 2022-03-18 19:47:35 -0600 |
---|---|---|
committer | B. Watson <urchlay@slackware.uk> | 2022-06-07 02:23:07 -0400 |
commit | 672200397ab4fac690aefffc7cd9af003cce0143 (patch) | |
tree | 3708551d72e37e5f7ac1241ff1039b008c9245d0 | |
parent | c9df755aafff33d4745b5dc9bbb09b64f2b13da1 (diff) |
audio/pasystray: Change i486 to i586
-rw-r--r-- | audio/pasystray/pasystray.SlackBuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/audio/pasystray/pasystray.SlackBuild b/audio/pasystray/pasystray.SlackBuild index 07cfff9fd923..edc6698b34c8 100644 --- a/audio/pasystray/pasystray.SlackBuild +++ b/audio/pasystray/pasystray.SlackBuild @@ -44,14 +44,14 @@ OUTPUT=${OUTPUT:-/tmp} if [ -z "$ARCH" ]; then case "$( uname -m )" in - i?86) ARCH=i486 ;; + i?86) ARCH=i586 ;; arm*) ARCH=arm ;; *) ARCH=$( uname -m ) ;; esac fi -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" |