diff options
author | Matteo Bernardini <matteo.bernardini@sns.it> | 2010-05-29 21:23:31 +0200 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-06-01 01:01:59 -0500 |
commit | bc39d7ab2895f9669ae6cfdc6a8826bb1685eae2 (patch) | |
tree | 329fefa5dbcb27a98634296d2270065836334277 /desktop/wmSun | |
parent | 83a4931b750124a6244f90b6fc561d2a2d5a711f (diff) | |
download | slackbuilds-bc39d7ab2895f9669ae6cfdc6a8826bb1685eae2.tar.gz |
desktop/wmSun: miscellaneous cleanups
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'desktop/wmSun')
-rw-r--r-- | desktop/wmSun/wmSun.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/desktop/wmSun/wmSun.SlackBuild b/desktop/wmSun/wmSun.SlackBuild index d16b1ab1e5..db34d8dfd3 100644 --- a/desktop/wmSun/wmSun.SlackBuild +++ b/desktop/wmSun/wmSun.SlackBuild @@ -7,10 +7,19 @@ PRGNAM=wmSun VERSION=${VERSION:-1.03} -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 @@ -25,6 +34,9 @@ elif [ "$ARCH" = "i686" ]; then elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" fi set -e |