system/nvidia-legacy173-kernel: Misc automated cleanups.

Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
This commit is contained in:
David Somero 2010-06-04 01:16:18 -04:00
parent 359fba810a
commit c5d7964ab9

View file

@ -31,7 +31,6 @@ VERSION=173.14.25
PRGNAM=nvidia-legacy173-kernel
PKGVER=${VERSION}_$(echo $KERNEL | tr - _)
ARCH=${ARCH:-i486}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
@ -45,6 +44,16 @@ fi
SRCNAM=NVIDIA-Linux-$TARGET-$VERSION-pkg0
# Automatically determine the architecture we're building on:
if [ -z "$ARCH" ]; then
case "$( uname -m )" in
i?86) ARCH=i486 ;;
arm*) ARCH=arm ;;
# Unless $ARCH is already set, use uname -m for all other archs:
*) ARCH=$( uname -m ) ;;
esac
fi
CWD=$(pwd)
TMP=${TMP:-/tmp/SBo}
PKG=${PKG:-$TMP/package-$PRGNAM}