mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-21 19:42:24 +01:00
system/nvidia-legacy96-kernel: Fix ordering of arch detection.
Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
This commit is contained in:
parent
66394ebb18
commit
9cd6dd13d7
1 changed files with 16 additions and 14 deletions
|
@ -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}
|
||||
|
|
Loading…
Reference in a new issue