diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:03:44 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:03:44 -0400 |
commit | 4e6ba5a241ec30200f8f0ebc89f7b35a529f8b63 (patch) | |
tree | 4ba08bd4895c8e0929d5590d1be32b409ca095a7 /development/stgit | |
parent | 3808cf58e5dc51fb366966d7203dd30327bc96c5 (diff) | |
download | slackbuilds-4e6ba5a241ec30200f8f0ebc89f7b35a529f8b63.tar.gz |
development/stgit: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'development/stgit')
-rw-r--r-- | development/stgit/stgit.SlackBuild | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/development/stgit/stgit.SlackBuild b/development/stgit/stgit.SlackBuild index 0e8a0a0121..39400c7739 100644 --- a/development/stgit/stgit.SlackBuild +++ b/development/stgit/stgit.SlackBuild @@ -24,10 +24,19 @@ PKGNAM=stgit VERSION=${VERSION:-0.15} -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-$PKGNAM |