diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:16:02 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:16:02 -0400 |
commit | 89719c2e424c2e58f65a3ae27d1c14968e53b5bf (patch) | |
tree | acb69f058eeea15a6cbafda165550e586adf5f6e /system/kvm/kvm.SlackBuild | |
parent | 0bdd2bba867b0206755e25a9db0eda5ed969a549 (diff) | |
download | slackbuilds-89719c2e424c2e58f65a3ae27d1c14968e53b5bf.tar.gz |
system/kvm: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'system/kvm/kvm.SlackBuild')
-rw-r--r-- | system/kvm/kvm.SlackBuild | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/system/kvm/kvm.SlackBuild b/system/kvm/kvm.SlackBuild index 53ca79bfef..ce05ec92ac 100644 --- a/system/kvm/kvm.SlackBuild +++ b/system/kvm/kvm.SlackBuild @@ -24,10 +24,19 @@ PRGNAM=kvm VERSION=${VERSION:-88} -ARCH=${ARCH:-i486} BUILD=${BUILD:-2} TAG=${TAG:-_SBo} +# 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=$TMP/package-$PRGNAM |