diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:15:28 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:15:28 -0400 |
commit | 626caecb4befb08f8ea36822525cac248dc1cea0 (patch) | |
tree | 8799383839e032808fa95cb3bef03b5a7274970d /system/dar | |
parent | d8967fd50da7f4eb6bc9003d32627914baff85e0 (diff) | |
download | slackbuilds-626caecb4befb08f8ea36822525cac248dc1cea0.tar.gz |
system/dar: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'system/dar')
-rw-r--r-- | system/dar/dar.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/system/dar/dar.SlackBuild b/system/dar/dar.SlackBuild index c65dd6483f..5d038ddfb2 100644 --- a/system/dar/dar.SlackBuild +++ b/system/dar/dar.SlackBuild @@ -30,10 +30,19 @@ PRGNAM="dar" VERSION="2.3.10" -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 @@ -48,6 +57,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 |