diff options
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 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 |