diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:14:11 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:14:11 -0400 |
commit | d48be3b1a26ce03736acfe33608e8d17575691ef (patch) | |
tree | 8747fb63dc98636a57be816679e76e64a1448077 /network | |
parent | bba73f4db8de8d880e06d7926b41f1703fb22f50 (diff) | |
download | slackbuilds-d48be3b1a26ce03736acfe33608e8d17575691ef.tar.gz |
network/spamassassin: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'network')
-rw-r--r-- | network/spamassassin/spamassassin.SlackBuild | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/network/spamassassin/spamassassin.SlackBuild b/network/spamassassin/spamassassin.SlackBuild index 0002f1f71c..6b8c2a311d 100644 --- a/network/spamassassin/spamassassin.SlackBuild +++ b/network/spamassassin/spamassassin.SlackBuild @@ -27,10 +27,19 @@ PRGNAM=spamassassin VERSION=${VERSION:-3.3.1} -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 |