diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:13:19 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:13:19 -0400 |
commit | e39442b85386d145c347c98a28b69f3d308514c2 (patch) | |
tree | 885d9035ac1ca78893ae40a6fa0a4e066d63a3b9 /network/mod_hosts_access | |
parent | 1a210a1d203cb59e7943277fd3de7b275d4fd8e2 (diff) | |
download | slackbuilds-e39442b85386d145c347c98a28b69f3d308514c2.tar.gz |
network/mod_hosts_access: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'network/mod_hosts_access')
-rw-r--r-- | network/mod_hosts_access/mod_hosts_access.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/network/mod_hosts_access/mod_hosts_access.SlackBuild b/network/mod_hosts_access/mod_hosts_access.SlackBuild index dd9c76d4d2..c970f4e74f 100644 --- a/network/mod_hosts_access/mod_hosts_access.SlackBuild +++ b/network/mod_hosts_access/mod_hosts_access.SlackBuild @@ -10,10 +10,19 @@ PRGNAM=mod_hosts_access VERSION=1.1.0 -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 @@ -28,6 +37,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 |