diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:09:16 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:09:16 -0400 |
commit | 045df816988681af0d7e3d67469f652db9eadb5f (patch) | |
tree | 0036ae227bb0bb66b540eabe769d2c7f303b933a /libraries/openmotif | |
parent | 6263b8a0b13ef73cf1e5ed06875246f89ab2548f (diff) | |
download | slackbuilds-045df816988681af0d7e3d67469f652db9eadb5f.tar.gz |
libraries/openmotif: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'libraries/openmotif')
-rw-r--r-- | libraries/openmotif/openmotif.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/libraries/openmotif/openmotif.SlackBuild b/libraries/openmotif/openmotif.SlackBuild index 309ac1f8ed..6f806d3956 100644 --- a/libraries/openmotif/openmotif.SlackBuild +++ b/libraries/openmotif/openmotif.SlackBuild @@ -7,10 +7,19 @@ PRGNAM=openmotif VERSION=2.3.0 -ARCH=${ARCH:-i486} BUILD=${BUILD:-2} 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 |