summaryrefslogtreecommitdiffstats
path: root/network/krb5
diff options
context:
space:
mode:
author David Somero <xgizzmo@slackbuilds.org>2010-06-04 01:13:07 -0400
committer David Somero <xgizzmo@slackbuilds.org>2010-06-04 01:13:07 -0400
commit367ee1361d778e26c7c10095d449d4fcc59b8ab9 (patch)
tree00d2c9d075a986b96d0f662bafc50180a8449d8f /network/krb5
parent8a3d85081735b1342d29c6cb860d260cc65386a6 (diff)
downloadslackbuilds-367ee1361d778e26c7c10095d449d4fcc59b8ab9.tar.gz
slackbuilds-367ee1361d778e26c7c10095d449d4fcc59b8ab9.tar.xz
network/krb5: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'network/krb5')
-rw-r--r--network/krb5/krb5.SlackBuild14
1 files changed, 13 insertions, 1 deletions
diff --git a/network/krb5/krb5.SlackBuild b/network/krb5/krb5.SlackBuild
index be4f332e4b..e6238b3ae6 100644
--- a/network/krb5/krb5.SlackBuild
+++ b/network/krb5/krb5.SlackBuild
@@ -32,10 +32,19 @@
PRGNAM=krb5
VERSION=${VERSION:-1.7.1}
-ARCH=${ARCH:-i486}
BUILD=${BUILD:-2}
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
@@ -50,6 +59,9 @@ elif [ "$ARCH" = "i686" ]; then
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
LIBDIRSUFFIX="64"
+else
+ SLKCFLAGS="-O2"
+ LIBDIRSUFFIX=""
fi
set -e