diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:17:09 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:17:09 -0400 |
commit | 679144ea58c81610f5c5600073e6eca3320c97e4 (patch) | |
tree | c3dcd921e19c07040b4e3bc40a60a1785c3e6a72 | |
parent | 526e273426cb3b0099feb0789de8973b87db01d4 (diff) | |
download | slackbuilds-679144ea58c81610f5c5600073e6eca3320c97e4.tar.gz |
system/worker: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
-rw-r--r-- | system/worker/worker.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/system/worker/worker.SlackBuild b/system/worker/worker.SlackBuild index 37779ad0b8..7a1204689f 100644 --- a/system/worker/worker.SlackBuild +++ b/system/worker/worker.SlackBuild @@ -27,10 +27,19 @@ PRGNAM=worker VERSION=2.13.1 -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 @@ -48,6 +57,9 @@ elif [ "$ARCH" = "s390" ]; then elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" fi set -e |