diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:12:42 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:12:42 -0400 |
commit | d55ad61d13f1355ea4b46155f714398261f1c587 (patch) | |
tree | 94066c1710af953150e8fafce71a9fe629747906 /network/exim | |
parent | 4cafcbdcdb848e9b9b7d232a9d7aac82814de6a8 (diff) |
network/exim: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'network/exim')
-rwxr-xr-x | network/exim/exim.SlackBuild | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/network/exim/exim.SlackBuild b/network/exim/exim.SlackBuild index 94d496e28eb9..f0f7b733ca24 100755 --- a/network/exim/exim.SlackBuild +++ b/network/exim/exim.SlackBuild @@ -9,10 +9,19 @@ PRGNAM=exim VERSION=${VERSION:-4.71} -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 @@ -27,9 +36,6 @@ elif [ "$ARCH" = "i686" ]; then elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" LIBDIRSUFFIX="64" -else - SLKCFLAGS="-O2" - LIBDIRSUFFIX="" fi set -e |