diff options
author | David Spencer <idlemoor@slackbuilds.org> | 2018-02-27 22:39:06 +0000 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2018-03-03 08:42:07 +0700 |
commit | 1acd812509995d34a82e40e1842061176203a6a8 (patch) | |
tree | 521769d5e36d28de626e22ad08a1fcbc9009dfb1 /games | |
parent | 7596c5859fb45464c4469e79b8fa31a34daf6b49 (diff) |
games/quakeforge: Fix build with ARCH=i686.
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
Diffstat (limited to 'games')
-rw-r--r-- | games/quakeforge/quakeforge.SlackBuild | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/games/quakeforge/quakeforge.SlackBuild b/games/quakeforge/quakeforge.SlackBuild index 0422c347e1d0..4f9051709937 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 |