summaryrefslogtreecommitdiffstats
path: root/development
diff options
context:
space:
mode:
author David Somero2010-06-04 07:03:36 +0200
committer David Somero2010-06-04 07:03:36 +0200
commit1ac4c99c337003fa2ea25650253ca9fe69aed5ef (patch)
tree640f4c9e3821dc346cf7a28e702feac8deb30a8c /development
parent2b75d674735f4c779ff5396197c5952e69a1bebf (diff)
downloadslackbuilds-1ac4c99c337003fa2ea25650253ca9fe69aed5ef.tar.gz
development/quilt: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'development')
-rw-r--r--development/quilt/quilt.SlackBuild14
1 files changed, 13 insertions, 1 deletions
diff --git a/development/quilt/quilt.SlackBuild b/development/quilt/quilt.SlackBuild
index 11144e89b4..c713a78a15 100644
--- a/development/quilt/quilt.SlackBuild
+++ b/development/quilt/quilt.SlackBuild
@@ -26,10 +26,19 @@
PRGNAM=quilt
VERSION=0.46
-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
@@ -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