diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:16:12 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:16:12 -0400 |
commit | fda6fdeefaf86268dd04eb75a0e243f8838f7ecf (patch) | |
tree | 53a0ac33e5fac50c7baa0057f885dd12c3983481 /system/multitail | |
parent | ae830c45389e85fbc6ac51e0395b0681c211adee (diff) | |
download | slackbuilds-fda6fdeefaf86268dd04eb75a0e243f8838f7ecf.tar.gz |
system/multitail: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'system/multitail')
-rw-r--r-- | system/multitail/multitail.SlackBuild | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/system/multitail/multitail.SlackBuild b/system/multitail/multitail.SlackBuild index 0724fad0b8..4b72da1863 100644 --- a/system/multitail/multitail.SlackBuild +++ b/system/multitail/multitail.SlackBuild @@ -24,10 +24,19 @@ PRGNAM=multitail VERSION=5.2.6 -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 |