summaryrefslogtreecommitdiffstats
path: root/system/virtualbox-kernel
diff options
context:
space:
mode:
author David Somero2010-06-04 07:17:07 +0200
committer David Somero2010-06-04 07:17:07 +0200
commit62a8829347a81b53472531229bfb285780e95535 (patch)
tree52d5991e88cfb0a878c73aa2df65c0af2f188815 /system/virtualbox-kernel
parent818b36779621b54fc6292a75f1dd98cb68e70b91 (diff)
downloadslackbuilds-62a8829347a81b53472531229bfb285780e95535.tar.gz
system/virtualbox-kernel: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'system/virtualbox-kernel')
-rw-r--r--system/virtualbox-kernel/virtualbox-kernel.SlackBuild11
1 files changed, 10 insertions, 1 deletions
diff --git a/system/virtualbox-kernel/virtualbox-kernel.SlackBuild b/system/virtualbox-kernel/virtualbox-kernel.SlackBuild
index 0129371f1f..eab70738c2 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}