diff options
author | Robby Workman <rworkman@slackbuilds.org> | 2010-05-21 01:33:49 -0500 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-05-21 01:33:49 -0500 |
commit | 170b31b6389a0383e0edd05a6a55e74fcd04c045 (patch) | |
tree | fd0c665d50bc5fce14c1cce585eacbdb9c772561 /libraries/libofa/libofa.SlackBuild | |
parent | b551bf0bf0adb1acea6ffc8bfb1466dcdcb1060f (diff) | |
download | slackbuilds-170b31b6389a0383e0edd05a6a55e74fcd04c045.tar.gz |
libraries/libofa: Miscellaneous cleanups.
This modified the gcc-4.3 patch to include stdio.h
Diffstat (limited to 'libraries/libofa/libofa.SlackBuild')
-rw-r--r-- | libraries/libofa/libofa.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/libraries/libofa/libofa.SlackBuild b/libraries/libofa/libofa.SlackBuild index 02d9d0087b..99f0c2e368 100644 --- a/libraries/libofa/libofa.SlackBuild +++ b/libraries/libofa/libofa.SlackBuild @@ -4,10 +4,19 @@ PRGNAM=libofa VERSION=${VERSION:-0.9.3} -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) export ARCH=i486 ;; + arm*) export ARCH=arm ;; + # Unless $ARCH is already set, use uname -m for all other archs: + *) export ARCH=$( uname -m ) ;; + esac +fi + CWD=$(pwd) TMP=${TMP:-/tmp/SBo} PKG=$TMP/package-$PRGNAM @@ -22,6 +31,9 @@ elif [ "$ARCH" = "i686" ]; then elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" fi set -e |