summaryrefslogtreecommitdiffstats
path: root/misc
diff options
context:
space:
mode:
author David Somero2010-06-04 07:11:18 +0200
committer David Somero2010-06-04 07:11:18 +0200
commit5e22b2131054166f6161ab8ba1bf20b5f7cdaa8d (patch)
tree9c57395dc846736d1df2faf2444d7675af206f82 /misc
parent45301a6a12df71baa3b9453e4cfdae339f58cc25 (diff)
downloadslackbuilds-5e22b2131054166f6161ab8ba1bf20b5f7cdaa8d.tar.gz
misc/siege: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'misc')
-rw-r--r--misc/siege/siege.SlackBuild14
1 files changed, 13 insertions, 1 deletions
diff --git a/misc/siege/siege.SlackBuild b/misc/siege/siege.SlackBuild
index 6368c4872e..912b7ded74 100644
--- a/misc/siege/siege.SlackBuild
+++ b/misc/siege/siege.SlackBuild
@@ -10,10 +10,19 @@
PRGNAM=siege
VERSION=${VERSION:-2.69}
-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
@@ -28,6 +37,9 @@ elif [ "$ARCH" = "i686" ]; then
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
LIBDIRSUFFIX="64"
+else
+ SLKCFLAGS="-O2"
+ LIBDIRSUFFIX=""
fi
set -e # Exit on most errors