diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:14:12 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:14:12 -0400 |
commit | 1d4ed06d52253e0137002bf6dd43fbbe24754c91 (patch) | |
tree | 2cf74351c7cbd0bfe6b24219b9fe6b6e1484959e /network | |
parent | 07d285806df14a2e2f569b62e85bcb9db8c73e1a (diff) | |
download | slackbuilds-1d4ed06d52253e0137002bf6dd43fbbe24754c91.tar.gz |
network/strongswan: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'network')
-rw-r--r-- | network/strongswan/strongswan.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/network/strongswan/strongswan.SlackBuild b/network/strongswan/strongswan.SlackBuild index a76925378e..546e0ec689 100644 --- a/network/strongswan/strongswan.SlackBuild +++ b/network/strongswan/strongswan.SlackBuild @@ -24,10 +24,19 @@ PRGNAM=strongswan VERSION=4.3.5 -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 @@ -42,6 +51,9 @@ elif [ "$ARCH" = "i686" ]; then elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" fi set -e |