diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:03:31 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:03:31 -0400 |
commit | 35c27c08eb837e70997a330891480edc02150b9f (patch) | |
tree | 3289c90aac85aae9e473d4632767b37ef23dd991 /development | |
parent | 45b149cc5490a6e2614cd36f95f41c9747ea607c (diff) | |
download | slackbuilds-35c27c08eb837e70997a330891480edc02150b9f.tar.gz |
development/pysetuptools: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'development')
-rw-r--r-- | development/pysetuptools/pysetuptools.SlackBuild | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/development/pysetuptools/pysetuptools.SlackBuild b/development/pysetuptools/pysetuptools.SlackBuild index 37105795a2..7b443ad754 100644 --- a/development/pysetuptools/pysetuptools.SlackBuild +++ b/development/pysetuptools/pysetuptools.SlackBuild @@ -14,10 +14,19 @@ PRGNAM=pysetuptools SRC_NAME=setuptools VERSION=0.6c11 -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=${PKG:-$TMP/package-$SRC_NAME} |