diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:13:32 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:13:32 -0400 |
commit | 92ab3aae24d9c83f3b34826431694068fc474795 (patch) | |
tree | 13a23460b4a030a6c4aee51912f7b61d0096f831 /network/nrpe | |
parent | 7616b1a4f9f2e873fdad2b330e21005538bfd6a5 (diff) | |
download | slackbuilds-92ab3aae24d9c83f3b34826431694068fc474795.tar.gz |
network/nrpe: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'network/nrpe')
-rw-r--r-- | network/nrpe/nrpe.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/network/nrpe/nrpe.SlackBuild b/network/nrpe/nrpe.SlackBuild index f8011ecdd0..3ee5640c00 100644 --- a/network/nrpe/nrpe.SlackBuild +++ b/network/nrpe/nrpe.SlackBuild @@ -6,10 +6,19 @@ PRGNAM=nrpe VERSION=${VERSION:-2.12} -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 |