diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:14:19 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:14:19 -0400 |
commit | 5e1e9e9a102237b1fc3d8c4a3be7711c35534573 (patch) | |
tree | 17141d6d168445e43d85e9466068eaa6ea528643 /network/tunctl | |
parent | 53f15e80f45aff8ac825686fa17b2f2a8c92af9b (diff) | |
download | slackbuilds-5e1e9e9a102237b1fc3d8c4a3be7711c35534573.tar.gz |
network/tunctl: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'network/tunctl')
-rw-r--r-- | network/tunctl/tunctl.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/network/tunctl/tunctl.SlackBuild b/network/tunctl/tunctl.SlackBuild index 911e259356..4d830244cb 100644 --- a/network/tunctl/tunctl.SlackBuild +++ b/network/tunctl/tunctl.SlackBuild @@ -6,10 +6,19 @@ PRGNAM=tunctl VERSION=${VERSION:-1.5} -ARCH=${ARCH:-i486} BUILD=${BUILD:-2} 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 |