diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:17:07 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:17:07 -0400 |
commit | 62a8829347a81b53472531229bfb285780e95535 (patch) | |
tree | 52d5991e88cfb0a878c73aa2df65c0af2f188815 /system | |
parent | 818b36779621b54fc6292a75f1dd98cb68e70b91 (diff) | |
download | slackbuilds-62a8829347a81b53472531229bfb285780e95535.tar.gz |
system/virtualbox-kernel: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'system')
-rw-r--r-- | system/virtualbox-kernel/virtualbox-kernel.SlackBuild | 11 |
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} |