diff options
Diffstat (limited to 'network/perl-Net-CIDR/perl-Net-CIDR.SlackBuild')
-rwxr-xr-x | network/perl-Net-CIDR/perl-Net-CIDR.SlackBuild | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/network/perl-Net-CIDR/perl-Net-CIDR.SlackBuild b/network/perl-Net-CIDR/perl-Net-CIDR.SlackBuild index 75393b5af3e20..2b33c59fda8b6 100755 --- a/network/perl-Net-CIDR/perl-Net-CIDR.SlackBuild +++ b/network/perl-Net-CIDR/perl-Net-CIDR.SlackBuild @@ -27,9 +27,18 @@ SRCNAM=Net-CIDR PRGNAM=perl-Net-CIDR VERSION=0.13 -ARCH=${ARCH:-i486} BUILD=${BUILD:-1} +# 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 |