mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-18 22:06:04 +01:00
system/nvidia-legacy173-kernel: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
This commit is contained in:
parent
359fba810a
commit
c5d7964ab9
1 changed files with 10 additions and 1 deletions
|
@ -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}
|
||||
|
|
Loading…
Reference in a new issue