diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:13:49 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:13:49 -0400 |
commit | 6958c9420c8a5335827dd0a6a66ffaed78e8866f (patch) | |
tree | a5ac8d86a48c20c015cdc80e69d3dee2f471704e /network/perl-Net-Ident | |
parent | 3573e7e6565b9cbb922da6f286560f25c74c59fd (diff) | |
download | slackbuilds-6958c9420c8a5335827dd0a6a66ffaed78e8866f.tar.gz |
network/perl-Net-Ident: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'network/perl-Net-Ident')
-rw-r--r-- | network/perl-Net-Ident/perl-Net-Ident.SlackBuild | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/network/perl-Net-Ident/perl-Net-Ident.SlackBuild b/network/perl-Net-Ident/perl-Net-Ident.SlackBuild index d00087aced..414c75ffea 100644 --- a/network/perl-Net-Ident/perl-Net-Ident.SlackBuild +++ b/network/perl-Net-Ident/perl-Net-Ident.SlackBuild @@ -29,10 +29,19 @@ SRCNAM=Net-Ident PRGNAM=perl-Net-Ident VERSION=1.20 -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 |