diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:03:35 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:03:35 -0400 |
commit | 2b75d674735f4c779ff5396197c5952e69a1bebf (patch) | |
tree | dedda2d035e1c25177a31fe998f38c73aebf3793 /development | |
parent | 745be0e673bb11930f8b1885f3d5813756801f00 (diff) |
development/qt-doc: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'development')
-rw-r--r-- | development/qt-doc/qt-doc.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/development/qt-doc/qt-doc.SlackBuild b/development/qt-doc/qt-doc.SlackBuild index 48859073b226..5c7db2c5858e 100644 --- a/development/qt-doc/qt-doc.SlackBuild +++ b/development/qt-doc/qt-doc.SlackBuild @@ -6,10 +6,19 @@ PKGNAM=qt-doc VERSION=4.5.1 -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} OUTPUT=${OUTPUT:-/tmp} @@ -21,6 +30,9 @@ if [ "$ARCH" = "i486" ] || [ "$ARCH" = "i686" ]; then LIBDIRSUFFIX="" elif [ "$ARCH" = "x86_64" ]; then LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" fi set -e |