diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:14:14 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:14:14 -0400 |
commit | e248e96b7fd632ce659eaab18e68a6f5fc81e2da (patch) | |
tree | e232298c70fbf306297eef3cc14c4aa7fc903369 /network/suphp/suphp.SlackBuild | |
parent | 582a4285c7ec55772271b63313cfa7c86451ecfa (diff) | |
download | slackbuilds-e248e96b7fd632ce659eaab18e68a6f5fc81e2da.tar.gz |
network/suphp: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'network/suphp/suphp.SlackBuild')
-rw-r--r-- | network/suphp/suphp.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/network/suphp/suphp.SlackBuild b/network/suphp/suphp.SlackBuild index 2852b31ff7..f00002bb85 100644 --- a/network/suphp/suphp.SlackBuild +++ b/network/suphp/suphp.SlackBuild @@ -10,10 +10,19 @@ PRGNAM=suphp VERSION=${VERSION:-0.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) 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 @@ -37,6 +46,9 @@ elif [ "$ARCH" = "i686" ]; then elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" fi set -e # Exit on most errors |