diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:16:12 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:16:12 -0400 |
commit | 1d459616af0dc97cec1d31453ac417fd86591c2f (patch) | |
tree | 4e2d68dcc2079192953b3e05dd41a077075071e8 /system | |
parent | fda6fdeefaf86268dd04eb75a0e243f8838f7ecf (diff) | |
download | slackbuilds-1d459616af0dc97cec1d31453ac417fd86591c2f.tar.gz |
system/nagios-plugins: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'system')
-rw-r--r-- | system/nagios-plugins/nagios-plugins.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/system/nagios-plugins/nagios-plugins.SlackBuild b/system/nagios-plugins/nagios-plugins.SlackBuild index 1facb4f6f8..efc336d137 100644 --- a/system/nagios-plugins/nagios-plugins.SlackBuild +++ b/system/nagios-plugins/nagios-plugins.SlackBuild @@ -6,10 +6,19 @@ PRGNAM=nagios-plugins VERSION=${VERSION:-1.4.14} -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 @@ -24,6 +33,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 |