diff options
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 |