diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:14:13 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:14:13 -0400 |
commit | 582a4285c7ec55772271b63313cfa7c86451ecfa (patch) | |
tree | 280705c5cae1457ae83e1abd5e38b60c3f03b4f1 /network | |
parent | 1d4ed06d52253e0137002bf6dd43fbbe24754c91 (diff) | |
download | slackbuilds-582a4285c7ec55772271b63313cfa7c86451ecfa.tar.gz |
network/suhosin: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'network')
-rw-r--r-- | network/suhosin/suhosin.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/network/suhosin/suhosin.SlackBuild b/network/suhosin/suhosin.SlackBuild index 007e9d1ea0..2f0bf424f7 100644 --- a/network/suhosin/suhosin.SlackBuild +++ b/network/suhosin/suhosin.SlackBuild @@ -12,10 +12,19 @@ PRGNAM=suhosin VERSION=${VERSION:-0.9.29} -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 @@ -30,6 +39,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 |