diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:03:51 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:03:51 -0400 |
commit | c7c6f9717d279c2b4cf8804cb3c49e27a2391805 (patch) | |
tree | 04411ac4f5f94ff4fe4026f9c580a3a4d889296e /development/xtruss | |
parent | 59ab39a4cbc3b90764c15c0f3c6287d6fb01e17d (diff) |
development/xtruss: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'development/xtruss')
-rw-r--r-- | development/xtruss/xtruss.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/development/xtruss/xtruss.SlackBuild b/development/xtruss/xtruss.SlackBuild index decd05fb5aa7..e1d6b38c5d8b 100644 --- a/development/xtruss/xtruss.SlackBuild +++ b/development/xtruss/xtruss.SlackBuild @@ -6,10 +6,19 @@ PRGNAM=xtruss VERSION=${VERSION:-r8615} -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 @@ -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 |