summaryrefslogtreecommitdiffstats
path: root/network/framework
diff options
context:
space:
mode:
author David Somero <xgizzmo@slackbuilds.org>2010-06-04 01:12:48 -0400
committer David Somero <xgizzmo@slackbuilds.org>2010-06-04 01:12:48 -0400
commitbba5458d092f008dcdb7c31472f68eb4805b9e9f (patch)
tree6c1c3f81d00cc977a5c00410d1740fddc2690744 /network/framework
parent6263b11ec99d1b60e305afc0901b63fbb8a7e252 (diff)
downloadslackbuilds-bba5458d092f008dcdb7c31472f68eb4805b9e9f.tar.gz
slackbuilds-bba5458d092f008dcdb7c31472f68eb4805b9e9f.tar.xz
network/framework: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'network/framework')
-rw-r--r--network/framework/framework.SlackBuild11
1 files changed, 10 insertions, 1 deletions
diff --git a/network/framework/framework.SlackBuild b/network/framework/framework.SlackBuild
index 7fa623f768..7ca61ee8f6 100644
--- a/network/framework/framework.SlackBuild
+++ b/network/framework/framework.SlackBuild
@@ -24,10 +24,19 @@
PRGNAM=framework
VERSION=${VERSION:-3.3.2}
-ARCH=${ARCH:-i486}
BUILD=${BUILD:-1}
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