diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:03:38 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:03:38 -0400 |
commit | ea02ec75b1c5f62cc781cd0f5a5aab8db43ce369 (patch) | |
tree | 56ddf66be964c0c3e38d2645d00291b1f1fa3b52 /development | |
parent | 007a95ae0c2c4c0078cd6f9ec5504ad16291c8c2 (diff) | |
download | slackbuilds-ea02ec75b1c5f62cc781cd0f5a5aab8db43ce369.tar.gz |
development/re2c: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'development')
-rw-r--r-- | development/re2c/re2c.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/development/re2c/re2c.SlackBuild b/development/re2c/re2c.SlackBuild index 493283cc27..4306f6b09b 100644 --- a/development/re2c/re2c.SlackBuild +++ b/development/re2c/re2c.SlackBuild @@ -24,10 +24,19 @@ PRGNAM=re2c VERSION=${VERSION:-0.13.5} -ARCH=${ARCH:-i486} BUILD=${BUILD:-3} 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 @@ -45,6 +54,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 |