summaryrefslogtreecommitdiffstats
path: root/system
diff options
context:
space:
mode:
author David Somero2010-06-04 07:16:04 +0200
committer David Somero2010-06-04 07:16:04 +0200
commit1c1c577c6d82fc31e5b75ee483711f1883460548 (patch)
tree9ec8d95aaec2ae989f9011172909099a2bd87998 /system
parentb2a21a204b386d0f27ba581e91dcf78751e45469 (diff)
downloadslackbuilds-1c1c577c6d82fc31e5b75ee483711f1883460548.tar.gz
system/lshw: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'system')
-rw-r--r--system/lshw/lshw.SlackBuild14
1 files changed, 13 insertions, 1 deletions
diff --git a/system/lshw/lshw.SlackBuild b/system/lshw/lshw.SlackBuild
index b9c976d25c..59f8348ead 100644
--- a/system/lshw/lshw.SlackBuild
+++ b/system/lshw/lshw.SlackBuild
@@ -5,10 +5,19 @@
PRGNAM=lshw
VERSION=B.02.14
-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
@@ -23,6 +32,9 @@ elif [ "$ARCH" = "i686" ]; then
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
LIBDIRSUFFIX="64"
+else
+ SLKCFLAGS="-O2"
+ LIBDIRSUFFIX=""
fi
set -e