diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:09:34 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:09:34 -0400 |
commit | 25331b9d0b6cf0d7136128fad653e6cb5adf0a02 (patch) | |
tree | 61f5add6cf7936fd6bfeb321df1fcc6ef1b82add | |
parent | 7b78a1be0cd6e4d5a40a18c5e28330a700e55222 (diff) | |
download | slackbuilds-25331b9d0b6cf0d7136128fad653e6cb5adf0a02.tar.gz |
libraries/perl-Test-Exception: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
-rw-r--r-- | libraries/perl-Test-Exception/perl-Test-Exception.SlackBuild | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/libraries/perl-Test-Exception/perl-Test-Exception.SlackBuild b/libraries/perl-Test-Exception/perl-Test-Exception.SlackBuild index d37edb06e9..591b03d0da 100644 --- a/libraries/perl-Test-Exception/perl-Test-Exception.SlackBuild +++ b/libraries/perl-Test-Exception/perl-Test-Exception.SlackBuild @@ -27,10 +27,19 @@ SRCNAM=Test-Exception PRGNAM=perl-Test-Exception VERSION=0.29 -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 |