diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:06:22 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:06:22 -0400 |
commit | 198d146f292f3fe04772084bf8d6904c1eb816c7 (patch) | |
tree | f5e711b14ea015318cc0a8c230cc3efa0ba1362f | |
parent | 11366febd246c36f1624278780a14374b507d5a2 (diff) | |
download | slackbuilds-198d146f292f3fe04772084bf8d6904c1eb816c7.tar.gz |
libraries/dnspython: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
-rw-r--r-- | libraries/dnspython/dnspython.SlackBuild | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/libraries/dnspython/dnspython.SlackBuild b/libraries/dnspython/dnspython.SlackBuild index 46cec845f8..47550c6cde 100644 --- a/libraries/dnspython/dnspython.SlackBuild +++ b/libraries/dnspython/dnspython.SlackBuild @@ -4,10 +4,19 @@ PRGNAM=dnspython VERSION=${VERSION:-1.8.0} -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 |