summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
author Andrew Clemons2021-07-25 12:24:05 +0200
committer Robby Workman2021-07-26 06:46:36 +0200
commitddeb35c7d1229ea86171ab3307d8e11b6abdaa5d (patch)
tree640605e81fc0d76dcabb3a8053e72a25f612f387
parent8cc6ee83c3c70885221f9ffb75f1dce318664d91 (diff)
downloadslackbuilds-ddeb35c7d1229ea86171ab3307d8e11b6abdaa5d.tar.gz
python/tweepy: Fix ARCH.
Signed-off-by: Andrew Clemons <andrew.clemons@gmail.com>
-rw-r--r--python/tweepy/tweepy.SlackBuild4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/tweepy/tweepy.SlackBuild b/python/tweepy/tweepy.SlackBuild
index 7d2acbcb2c..1e80cefc32 100644
--- a/python/tweepy/tweepy.SlackBuild
+++ b/python/tweepy/tweepy.SlackBuild
@@ -49,8 +49,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"