summaryrefslogtreecommitdiffstats
path: root/system
diff options
context:
space:
mode:
author David Somero2010-06-04 07:16:45 +0200
committer David Somero2010-06-04 07:16:45 +0200
commit61eeaddf668679770241571791afb7c9525d6e22 (patch)
tree4519f74e9b56b64ce07075d7722ede4b5d96cebc /system
parent860dd20d0cb292f68a382cbde45cde51888334d9 (diff)
downloadslackbuilds-61eeaddf668679770241571791afb7c9525d6e22.tar.gz
system/set_rlimits: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'system')
-rw-r--r--system/set_rlimits/set_rlimits.SlackBuild14
1 files changed, 13 insertions, 1 deletions
diff --git a/system/set_rlimits/set_rlimits.SlackBuild b/system/set_rlimits/set_rlimits.SlackBuild
index 92520556f6..af906c6d86 100644
--- a/system/set_rlimits/set_rlimits.SlackBuild
+++ b/system/set_rlimits/set_rlimits.SlackBuild
@@ -7,10 +7,19 @@
PKGNAME=set_rlimits
VERSION=1.3.0
-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-$PKGNAME
@@ -25,6 +34,9 @@ elif [ "$ARCH" = "i686" ]; then
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
LIBDIRSUFFIX="64"
+else
+ SLKCFLAGS="-O2"
+ LIBDIRSUFFIX=""
fi
set -e