system/nvidia-legacy96-kernel: Fix ordering of arch detection.

Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
This commit is contained in:
dsomero 2010-06-06 06:20:02 -04:00
parent 66394ebb18
commit 9cd6dd13d7

View file

@ -24,25 +24,15 @@
# Thanks to Robby Workman for suggestions to improve this script.
KERNEL=${KERNEL:-$(uname -r)}
KERNELPATH=${KERNELPATH:-/lib/modules/${KERNEL}/build}
VERSION=96.43.16
PRGNAM=nvidia-legacy96-kernel
PKGVER=${VERSION}_$(echo $KERNEL | tr - _)
VERSION=96.43.16
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
if [ "$ARCH" = "i486" ]; then
TARGET="x86"
elif [ "$ARCH" = "i686" ]; then
TARGET="x86"
elif [ "$ARCH" = "x86_64" ]; then
TARGET="x86_64"
fi
KERNEL=${KERNEL:-$(uname -r)}
KERNELPATH=${KERNELPATH:-/lib/modules/${KERNEL}/build}
SRCNAM=NVIDIA-Linux-$TARGET-$VERSION-pkg0
PKGVER=${VERSION}_$(echo $KERNEL | tr - _)
# Automatically determine the architecture we're building on:
if [ -z "$ARCH" ]; then
@ -54,6 +44,18 @@ if [ -z "$ARCH" ]; then
esac
fi
if [ "$ARCH" = "i486" ]; then
TARGET="x86"
elif [ "$ARCH" = "i686" ]; then
TARGET="x86"
elif [ "$ARCH" = "x86_64" ]; then
TARGET="x86_64"
fi
unset ARCH
SRCNAM=NVIDIA-Linux-$TARGET-$VERSION-pkg0
CWD=$(pwd)
TMP=${TMP:-/tmp/SBo}
PKG=${PKG:-$TMP/package-$PRGNAM}