summaryrefslogtreecommitdiffstats
path: root/network/mod_perl/mod_perl.SlackBuild
diff options
context:
space:
mode:
author David Somero2010-06-04 07:13:20 +0200
committer David Somero2010-06-04 07:13:20 +0200
commit79230d5ce0d6899463f1bec7e28029365e8b9eba (patch)
tree273b247eeff224fe5a95f80afb3ed200be6defc1 /network/mod_perl/mod_perl.SlackBuild
parent60a42bc3ecaa48bcc76f141397368608a3e5528a (diff)
downloadslackbuilds-79230d5ce0d6899463f1bec7e28029365e8b9eba.tar.gz
network/mod_perl: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'network/mod_perl/mod_perl.SlackBuild')
-rw-r--r--network/mod_perl/mod_perl.SlackBuild14
1 files changed, 13 insertions, 1 deletions
diff --git a/network/mod_perl/mod_perl.SlackBuild b/network/mod_perl/mod_perl.SlackBuild
index 911fc7c824..7e096af9c5 100644
--- a/network/mod_perl/mod_perl.SlackBuild
+++ b/network/mod_perl/mod_perl.SlackBuild
@@ -24,10 +24,19 @@
PRGNAM=mod_perl
VERSION=2.0.4
-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
@@ -39,6 +48,9 @@ elif [ "$ARCH" = "i686" ]; then
LIBDIRSUFFIX=""
elif [ "$ARCH" = "x86_64" ]; then
LIBDIRSUFFIX="64"
+else
+ SLKCFLAGS="-O2"
+ LIBDIRSUFFIX=""
fi
set -e