diff options
author | B. Watson <yalhcru@gmail.com> | 2010-12-29 00:10:35 -0200 |
---|---|---|
committer | Niels Horn <niels.horn@slackbuilds.org> | 2010-12-29 00:10:35 -0200 |
commit | 0d4fec00042c8b3998a50ec5361fbf4f2ae0c8fa (patch) | |
tree | 22f41ac5958eadef2eaf258ebd242666bb1f1b11 /development/cc65/cc65.SlackBuild | |
parent | 7f82f589a750e58475958f12f16a67e4b970d1a3 (diff) |
development/cc65: Updated for version 2.13.2.
Signed-off-by: Niels Horn <niels.horn@slackbuilds.org>
Diffstat (limited to 'development/cc65/cc65.SlackBuild')
-rw-r--r-- | development/cc65/cc65.SlackBuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/development/cc65/cc65.SlackBuild b/development/cc65/cc65.SlackBuild index 2940e2515367..0adcf1b02941 100644 --- a/development/cc65/cc65.SlackBuild +++ b/development/cc65/cc65.SlackBuild @@ -5,16 +5,14 @@ # Written by B. Watson (yalhcru@gmail.com) PRGNAM=cc65 -VERSION=${VERSION:-2.13.1} +VERSION=${VERSION:-2.13.2} 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 @@ -30,6 +28,8 @@ elif [ "$ARCH" = "i686" ]; then SLKCFLAGS="-O2 -march=i686 -mtune=i686" elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" +else + SLKCFLAGS="-O2" fi set -e |