diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:03:04 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:03:04 -0400 |
commit | 9d192b63823175b4c4f55716a852464e7c0f4688 (patch) | |
tree | dfe6471bdbe5e45701fe2a1fe15301dc740ad139 /development/ldns/ldns.SlackBuild | |
parent | 69f9ad0b6c97744ef780c19037728bf10fd00f85 (diff) | |
download | slackbuilds-9d192b63823175b4c4f55716a852464e7c0f4688.tar.gz |
development/ldns: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'development/ldns/ldns.SlackBuild')
-rwxr-xr-x | development/ldns/ldns.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
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 |