diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:07:33 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:07:33 -0400 |
commit | d722496edfbc3b2c44d710efb8cb2f1dfe760a43 (patch) | |
tree | 91b33cd5dff1f85b8152494f9a1e6bb909c1f763 /libraries/libdaemon | |
parent | b37860a0d0b3d15de88a79b1c8268cd8d1b116f1 (diff) | |
download | slackbuilds-d722496edfbc3b2c44d710efb8cb2f1dfe760a43.tar.gz |
libraries/libdaemon: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'libraries/libdaemon')
-rw-r--r-- | libraries/libdaemon/libdaemon.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/libraries/libdaemon/libdaemon.SlackBuild b/libraries/libdaemon/libdaemon.SlackBuild index cd254aa5ec..78c5be9d3d 100644 --- a/libraries/libdaemon/libdaemon.SlackBuild +++ b/libraries/libdaemon/libdaemon.SlackBuild @@ -21,10 +21,19 @@ PRGNAM=libdaemon VERSION=0.13 -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 @@ -39,6 +48,9 @@ elif [ "$ARCH" = "i686" ]; then elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" fi set -e # Exit on most errors |