diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:02:28 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:02:28 -0400 |
commit | 33befee361b8c43f0f6fa78e9172d28e2b797fd0 (patch) | |
tree | 05ba3af5548328942f7b94e45dc7a6ba40f6a911 /development/avr-binutils | |
parent | 4d449c8dfae1b3dfad99d71cc5465b94e345af10 (diff) | |
download | slackbuilds-33befee361b8c43f0f6fa78e9172d28e2b797fd0.tar.gz |
development/avr-binutils: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'development/avr-binutils')
-rw-r--r-- | development/avr-binutils/avr-binutils.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/development/avr-binutils/avr-binutils.SlackBuild b/development/avr-binutils/avr-binutils.SlackBuild index 3c9fa17d1b..d389512062 100644 --- a/development/avr-binutils/avr-binutils.SlackBuild +++ b/development/avr-binutils/avr-binutils.SlackBuild @@ -9,10 +9,19 @@ PRGNAM=avr-binutils VERSION=${VERSION:-2.19.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 @@ -27,6 +36,9 @@ elif [ "$ARCH" = "i686" ]; then elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" fi set -e |