From 9d192b63823175b4c4f55716a852464e7c0f4688 Mon Sep 17 00:00:00 2001 From: David Somero Date: Fri, 4 Jun 2010 01:03:04 -0400 Subject: development/ldns: Misc automated cleanups. Signed-off-by: David Somero --- development/ldns/ldns.SlackBuild | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/development/ldns/ldns.SlackBuild b/development/ldns/ldns.SlackBuild index 35949ac25b..75277cbfa0 100755 --- a/development/ldns/ldns.SlackBuild +++ b/development/ldns/ldns.SlackBuild @@ -34,10 +34,19 @@ PRGNAM=ldns VERSION=${VERSION:-1.6.4} -ARCH=${ARCH:-i486} TAG=${TAG:-_SBo} 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 @@ -52,6 +61,9 @@ elif [ "$ARCH" = "s390" ]; then elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" fi set -e -- cgit v1.2.3