diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:13:20 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:13:20 -0400 |
commit | 79230d5ce0d6899463f1bec7e28029365e8b9eba (patch) | |
tree | 273b247eeff224fe5a95f80afb3ed200be6defc1 /network/mod_perl | |
parent | 60a42bc3ecaa48bcc76f141397368608a3e5528a (diff) | |
download | slackbuilds-79230d5ce0d6899463f1bec7e28029365e8b9eba.tar.gz |
network/mod_perl: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'network/mod_perl')
-rw-r--r-- | network/mod_perl/mod_perl.SlackBuild | 14 |
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 |