summaryrefslogtreecommitdiffstats
path: root/development/gc/gc.SlackBuild
diff options
context:
space:
mode:
author Robby Workman <rworkman@slackbuilds.org>2010-05-22 23:04:16 -0500
committer Robby Workman <rworkman@slackbuilds.org>2010-05-23 23:21:42 -0500
commita4e51aa41b180d240835aaa2655d4402163319f8 (patch)
treeecb647fea7579338763113215f313bbee3f6bdc0 /development/gc/gc.SlackBuild
parent1cc726c334ea961ffd768471639e277a5c96bcca (diff)
downloadslackbuilds-a4e51aa41b180d240835aaa2655d4402163319f8.tar.gz
slackbuilds-a4e51aa41b180d240835aaa2655d4402163319f8.tar.xz
development/gc: Miscellaneous cleanups.
Diffstat (limited to 'development/gc/gc.SlackBuild')
-rw-r--r--development/gc/gc.SlackBuild16
1 files changed, 14 insertions, 2 deletions
diff --git a/development/gc/gc.SlackBuild b/development/gc/gc.SlackBuild
index c39f9b42e8..b897b3575a 100644
--- a/development/gc/gc.SlackBuild
+++ b/development/gc/gc.SlackBuild
@@ -2,7 +2,7 @@
# Slackware build script for gc
-# Copyright 2006-2009 Robby Workman, Northport, Alabama, USA
+# Copyright 2006,2007,2008,2009,2010 Robby Workman, Northport, Alabama, USA
# All rights reserved.
#
# Redistribution and use of this script, with or without modification, is
@@ -24,10 +24,19 @@
PRGNAM=gc
VERSION=${VERSION:-7.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) export ARCH=i486 ;;
+ arm*) export ARCH=arm ;;
+ # Unless $ARCH is already set, use uname -m for all other archs:
+ *) export ARCH=$( uname -m ) ;;
+ esac
+fi
+
CWD=$(pwd)
TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
@@ -42,6 +51,9 @@ elif [ "$ARCH" = "i686" ]; then
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
LIBDIRSUFFIX="64"
+else
+ SLKCFLAGS="-O2"
+ LIBDIRSUFFIX=""
fi
set -e