diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:07:43 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:07:43 -0400 |
commit | b54510aec1d6339b0a4b3ac581b159512b6acaf5 (patch) | |
tree | bdb47b90a4d27ffb89f68c50af3c7e497087f419 /libraries/libelf | |
parent | c03b8e980e50af114702485cd607e548ec52b27e (diff) | |
download | slackbuilds-b54510aec1d6339b0a4b3ac581b159512b6acaf5.tar.gz |
libraries/libelf: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'libraries/libelf')
-rw-r--r-- | libraries/libelf/libelf.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/libraries/libelf/libelf.SlackBuild b/libraries/libelf/libelf.SlackBuild index fa3ea89c0c..039d12ed65 100644 --- a/libraries/libelf/libelf.SlackBuild +++ b/libraries/libelf/libelf.SlackBuild @@ -6,10 +6,19 @@ PRGNAM=libelf VERSION=${VERSION:-0.8.13} -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 |