diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:12:19 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:12:19 -0400 |
commit | 42be0862f8617289690e8f407e5a1f61098baec8 (patch) | |
tree | 82016c58a7ebcd0ab5a2a761217e7c53991336c5 /network/asterisk | |
parent | f8e7f259c2a6e59df5efc968ca65db577a901dde (diff) |
network/asterisk: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'network/asterisk')
-rw-r--r-- | network/asterisk/asterisk.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/network/asterisk/asterisk.SlackBuild b/network/asterisk/asterisk.SlackBuild index ada90379975d..85ba95813fa7 100644 --- a/network/asterisk/asterisk.SlackBuild +++ b/network/asterisk/asterisk.SlackBuild @@ -22,10 +22,19 @@ PRGNAM="asterisk" VERSION="1.6.1.6" -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/pkg-$PRGNAM" @@ -40,6 +49,9 @@ elif [ "$ARCH" = "i686" ]; then elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" fi set -e |