diff options
-rw-r--r-- | games/skulltag/skulltag.SlackBuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/games/skulltag/skulltag.SlackBuild b/games/skulltag/skulltag.SlackBuild index b74ae1d489..b89a631d20 100644 --- a/games/skulltag/skulltag.SlackBuild +++ b/games/skulltag/skulltag.SlackBuild @@ -13,7 +13,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 @@ -24,7 +24,7 @@ TMP=${TMP:-/tmp/SBo} PKG=$TMP/package-$PRGNAM OUTPUT=${OUTPUT:-/tmp} -if [ "$ARCH" = "i486" ]; then +if [ "$ARCH" = "i586" ]; then LIBDIRSUFFIX="" TARARCH=x86 elif [ "$ARCH" = "i686" ]; then @@ -34,7 +34,7 @@ elif [ "$ARCH" = "x86_64" ]; then LIBDIRSUFFIX="64" TARARCH=x86_64 else - echo "Unsupported ARCH '$ARCH'. Supported ARCH values are 'i486' 'i686' 'x86_64'" + echo "Unsupported ARCH '$ARCH'. Supported ARCH values are 'i586' 'i686' 'x86_64'" exit 1 fi |