diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:15:57 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:15:57 -0400 |
commit | c434c8dd42b4d5473ce9140b2e612e5c6d41f5e5 (patch) | |
tree | 5535a866069c96ecae0abc61a322646bf1dd96da /system/isomaster | |
parent | f6bc6003dcbdad3f426a1b1b71fcb3af63024263 (diff) | |
download | slackbuilds-c434c8dd42b4d5473ce9140b2e612e5c6d41f5e5.tar.gz |
system/isomaster: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'system/isomaster')
-rw-r--r-- | system/isomaster/isomaster.SlackBuild | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/system/isomaster/isomaster.SlackBuild b/system/isomaster/isomaster.SlackBuild index ed50a0f9f2..80d7df20c8 100644 --- a/system/isomaster/isomaster.SlackBuild +++ b/system/isomaster/isomaster.SlackBuild @@ -24,10 +24,19 @@ PRGNAM=isomaster VERSION=1.3.7 -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 |