diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:15:11 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:15:11 -0400 |
commit | 986df45856322cca600d0a133e2d42e21d8eb903 (patch) | |
tree | a222b1e3cd3c42c775293e12705636cb88c05aef /system/atop | |
parent | 3dce6a26c4c47f68d068fa5627255dad581ee2fa (diff) |
system/atop: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'system/atop')
-rw-r--r-- | system/atop/atop.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/system/atop/atop.SlackBuild b/system/atop/atop.SlackBuild index 25d4a800baf2..fefb9a307bff 100644 --- a/system/atop/atop.SlackBuild +++ b/system/atop/atop.SlackBuild @@ -11,10 +11,19 @@ PRGNAM=atop VERSION=1.23 -ARCH=${ARCH:-i486} BUILD=${BUILD:-3} 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 @@ -29,6 +38,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 |