summaryrefslogtreecommitdiffstats
path: root/development
diff options
context:
space:
mode:
author David Somero <xgizzmo@slackbuilds.org>2010-06-04 01:03:42 -0400
committer David Somero <xgizzmo@slackbuilds.org>2010-06-04 01:03:42 -0400
commit909a051e3499c1b4b3be9ddc7772b5f6a81ffe68 (patch)
tree5f198ec793d0bbdd635fdeaf8669243e7fda2bf7 /development
parente57391d0cf0d88934482c6d02d5348b8df338bff (diff)
downloadslackbuilds-909a051e3499c1b4b3be9ddc7772b5f6a81ffe68.tar.gz
slackbuilds-909a051e3499c1b4b3be9ddc7772b5f6a81ffe68.tar.xz
development/splint: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'development')
-rw-r--r--development/splint/splint.SlackBuild14
1 files changed, 13 insertions, 1 deletions
diff --git a/development/splint/splint.SlackBuild b/development/splint/splint.SlackBuild
index 5f680ac00c..5ba0472ef4 100644
--- a/development/splint/splint.SlackBuild
+++ b/development/splint/splint.SlackBuild
@@ -11,10 +11,19 @@
PRGNAM=splint
VERSION=3.1.2
-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
@@ -31,6 +40,9 @@ elif [ "$ARCH" = "i686" ]; then
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
LIBDIRSUFFIX="64"
+else
+ SLKCFLAGS="-O2"
+ LIBDIRSUFFIX=""
fi
rm -rf $PKG