summaryrefslogtreecommitdiffstats
path: root/system
diff options
context:
space:
mode:
author David Somero2010-06-04 07:16:23 +0200
committer David Somero2010-06-04 07:16:23 +0200
commit734a4623d53cab164c9dcd63d19da3593b87bda1 (patch)
tree6985297d85d65a4b3da2865fcecd0687338dbc12 /system
parent3f6ba4cdb0628a9b614245cb5b98b476025dea54 (diff)
downloadslackbuilds-734a4623d53cab164c9dcd63d19da3593b87bda1.tar.gz
system/pacemaker: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'system')
-rw-r--r--system/pacemaker/pacemaker.SlackBuild14
1 files changed, 13 insertions, 1 deletions
diff --git a/system/pacemaker/pacemaker.SlackBuild b/system/pacemaker/pacemaker.SlackBuild
index 1c68601fbe..bbff7ad5e6 100644
--- a/system/pacemaker/pacemaker.SlackBuild
+++ b/system/pacemaker/pacemaker.SlackBuild
@@ -11,10 +11,19 @@
PRGNAM=pacemaker
VERSION=${VERSION:-b9b672590e79}
-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
@@ -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