system/nbench: Misc automated cleanups.

Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
This commit is contained in:
David Somero 2010-06-04 01:16:13 -04:00
parent 1d459616af
commit 379bbf3088
1 changed files with 11 additions and 9 deletions

View File

@ -7,11 +7,19 @@
PRGNAM=nbench
VERSION=${VERSION:-2.2.3}
ARCH=${ARCH:-i486}
SRCVERSION="byte-$VERSION"
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
SRCVERSION="byte-$VERSION"
# 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}
@ -27,15 +35,9 @@ elif [ "$ARCH" = "i686" ]; then
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
LIBDIRSUFFIX="64"
elif [ "$ARCH" = "s390" ]; then
else
SLKCFLAGS="-O2"
LIBDIRSUFFIX=""
elif [ "$ARCH" = "s390x" ]; then
SLKCFLAGS="-O2"
LIBDIRSUFFIX="64"
elif [ "$ARCH" = "arm" ]; then
SLKCFLAGS="-O2 -march=armv4"
LIBDIRSUFFIX=""
fi
set -e