diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:15:11 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:15:11 -0400 |
commit | b578101434e682089b7820e97727a10b1c0a642e (patch) | |
tree | 81196cac2088539c2c703f9bee7f6f67aae1e238 /system/bacula-client | |
parent | 986df45856322cca600d0a133e2d42e21d8eb903 (diff) | |
download | slackbuilds-b578101434e682089b7820e97727a10b1c0a642e.tar.gz |
system/bacula-client: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'system/bacula-client')
-rw-r--r-- | system/bacula-client/bacula-client.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/system/bacula-client/bacula-client.SlackBuild b/system/bacula-client/bacula-client.SlackBuild index c8b725b487..8c23d7a347 100644 --- a/system/bacula-client/bacula-client.SlackBuild +++ b/system/bacula-client/bacula-client.SlackBuild @@ -25,10 +25,19 @@ PRGNAM=bacula-client SRCNAM=bacula VERSION=${VERSION:-5.0.1} -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 @@ -43,6 +52,9 @@ elif [ "$ARCH" = "i686" ]; then elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" fi set -e |