diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:16:42 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:16:42 -0400 |
commit | 557b75e42e943dd858cc5ca8619f9cf68ea81f60 (patch) | |
tree | e6de2aeac2f07bb74f946d1149bf338eb18461a2 /system/safecopy | |
parent | 3d032c6a20df538dde9ce27647da7e1d36831dae (diff) |
system/safecopy: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'system/safecopy')
-rw-r--r-- | system/safecopy/safecopy.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/system/safecopy/safecopy.SlackBuild b/system/safecopy/safecopy.SlackBuild index 0680c3ed25c1..abdc6ef70931 100644 --- a/system/safecopy/safecopy.SlackBuild +++ b/system/safecopy/safecopy.SlackBuild @@ -26,10 +26,19 @@ PRGNAM=safecopy VERSION=1.6 -ARCH=${ARCH:-i486} BUILD=${BUILD:-2} 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 @@ -44,6 +53,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 |