diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:15:56 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:15:56 -0400 |
commit | 96097073843b5715c9371781889b0c4c2cf7a500 (patch) | |
tree | 8d4d5e6115ae8ec867e4b8f63bb4c9464d4e9917 /system/ipmitool | |
parent | 5f8a681f898de77325552d85732f7739516bd4d2 (diff) |
system/ipmitool: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'system/ipmitool')
-rw-r--r-- | system/ipmitool/ipmitool.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/system/ipmitool/ipmitool.SlackBuild b/system/ipmitool/ipmitool.SlackBuild index f115f683040b..e31eac73e028 100644 --- a/system/ipmitool/ipmitool.SlackBuild +++ b/system/ipmitool/ipmitool.SlackBuild @@ -11,10 +11,19 @@ PRGNAM=ipmitool VERSION=${VERSION:-1.8.11} -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 @@ -29,6 +38,9 @@ elif [ "$ARCH" = "i686" ]; then elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" fi set -e |