diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:14:06 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:14:06 -0400 |
commit | 36c6236ac24fa7430e7f76ecdbbf1eb04ba73a84 (patch) | |
tree | 947ec4f012c90d3316240143f0e27f593e9d8b53 /network | |
parent | 1ff8f62d44734d24d168166c8956a7f8c916ae17 (diff) | |
download | slackbuilds-36c6236ac24fa7430e7f76ecdbbf1eb04ba73a84.tar.gz |
network/r2e: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'network')
-rw-r--r-- | network/r2e/r2e.SlackBuild | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/network/r2e/r2e.SlackBuild b/network/r2e/r2e.SlackBuild index a052197a29..5722d2d0ec 100644 --- a/network/r2e/r2e.SlackBuild +++ b/network/r2e/r2e.SlackBuild @@ -36,10 +36,19 @@ PRGNAM=r2e VERSION=2.66 -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 |