diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:15:06 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:15:06 -0400 |
commit | 710b12cf76186d9c0bc5fff38d4630586e2e3f57 (patch) | |
tree | 7ee4f85ab0cbaff03e84901eb746be20db967d8f /system/aimage | |
parent | 0c5088f0915391bd19908b829ddbf3e796039ffd (diff) | |
download | slackbuilds-710b12cf76186d9c0bc5fff38d4630586e2e3f57.tar.gz |
system/aimage: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'system/aimage')
-rw-r--r-- | system/aimage/aimage.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/system/aimage/aimage.SlackBuild b/system/aimage/aimage.SlackBuild index c5a6298ad5..3523c8d2b7 100644 --- a/system/aimage/aimage.SlackBuild +++ b/system/aimage/aimage.SlackBuild @@ -24,10 +24,19 @@ PRGNAM=aimage VERSION=3.2.4 -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 @@ -42,6 +51,9 @@ elif [ "$ARCH" = "i686" ]; then elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" fi set -e |