summaryrefslogtreecommitdiffstats
path: root/games/quakeforge
diff options
context:
space:
mode:
author David Spencer2018-02-27 23:39:06 +0100
committer Willy Sudiarto Raharjo2018-03-03 02:42:07 +0100
commit1acd812509995d34a82e40e1842061176203a6a8 (patch)
tree521769d5e36d28de626e22ad08a1fcbc9009dfb1 /games/quakeforge
parent7596c5859fb45464c4469e79b8fa31a34daf6b49 (diff)
downloadslackbuilds-1acd812509995d34a82e40e1842061176203a6a8.tar.gz
games/quakeforge: Fix build with ARCH=i686.
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
Diffstat (limited to 'games/quakeforge')
-rw-r--r--games/quakeforge/quakeforge.SlackBuild13
1 files changed, 8 insertions, 5 deletions
diff --git a/games/quakeforge/quakeforge.SlackBuild b/games/quakeforge/quakeforge.SlackBuild
index 0422c347e1..4f90517099 100644
--- a/games/quakeforge/quakeforge.SlackBuild
+++ b/games/quakeforge/quakeforge.SlackBuild
@@ -9,7 +9,7 @@ TAG=${TAG:-_SBo}
if [ -z "$ARCH" ]; then
case "$( uname -m )" in
- i?86) ARCH=i486 ;;
+ i?86) ARCH=i586 ;;
arm*) ARCH=arm ;;
*) ARCH=$( uname -m ) ;;
esac
@@ -20,8 +20,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"
@@ -34,8 +34,11 @@ else
LIBDIRSUFFIX=""
fi
-# Building with svga support break stuff on 32bit x86
-SVGA="" ; [ "$ARCH" = "i486" ] && SVGA="--without-svga"
+# Building with svga support breaks stuff on 32bit x86
+SVGA=""
+if [ "$ARCH" = "i586" ] || [ "$ARCH" = "i686" ]; then
+ SVGA="--without-svga"
+fi
set -e