diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:15:07 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:15:07 -0400 |
commit | ee88a6c2307f8f0d17c4367236024effa2772e12 (patch) | |
tree | b976d6f8bff0639615854ee31b80986e014a05a4 /system/anacron | |
parent | cc2589d979ca22a84025cd8712dcf9d974605727 (diff) |
system/anacron: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'system/anacron')
-rw-r--r-- | system/anacron/anacron.SlackBuild | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/system/anacron/anacron.SlackBuild b/system/anacron/anacron.SlackBuild index 392d00077f14..7409cd765b12 100644 --- a/system/anacron/anacron.SlackBuild +++ b/system/anacron/anacron.SlackBuild @@ -24,10 +24,19 @@ PRGNAM=anacron VERSION=2.3 -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 |