diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:15:53 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:15:53 -0400 |
commit | 086ecd33ce25e4e2ec28fd6b8bbabf094b73e58f (patch) | |
tree | 1d45e0e8dedd63ed1ca4f90202d594b3aebc6fd4 /system | |
parent | bd54c788c48d004c6e1550d6310abbf10fcf60cc (diff) |
system/hwinfo: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'system')
-rw-r--r-- | system/hwinfo/hwinfo.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/system/hwinfo/hwinfo.SlackBuild b/system/hwinfo/hwinfo.SlackBuild index 6dbb81eb8ddd..0d4395d89e06 100644 --- a/system/hwinfo/hwinfo.SlackBuild +++ b/system/hwinfo/hwinfo.SlackBuild @@ -24,10 +24,19 @@ PRGNAM=hwinfo VERSION=16.10 -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 |