From 62a8829347a81b53472531229bfb285780e95535 Mon Sep 17 00:00:00 2001 From: David Somero Date: Fri, 4 Jun 2010 01:17:07 -0400 Subject: system/virtualbox-kernel: Misc automated cleanups. Signed-off-by: David Somero --- system/virtualbox-kernel/virtualbox-kernel.SlackBuild | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/system/virtualbox-kernel/virtualbox-kernel.SlackBuild b/system/virtualbox-kernel/virtualbox-kernel.SlackBuild index 0129371f1f15d..eab70738c25b0 100644 --- a/system/virtualbox-kernel/virtualbox-kernel.SlackBuild +++ b/system/virtualbox-kernel/virtualbox-kernel.SlackBuild @@ -26,7 +26,6 @@ PRGNAM=virtualbox-kernel VERSION=${VERSION:-3.1.6} -ARCH=${ARCH:-i486} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -37,6 +36,16 @@ PKG_ARCH=$ARCH unset ARCH +# 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} -- cgit v1.2.3