diff options
author | B. Watson <yalhcru@gmail.com> | 2017-03-21 20:49:26 -0400 |
---|---|---|
committer | David Spencer <idlemoor@slackbuilds.org> | 2017-03-25 13:29:24 +0000 |
commit | 43fb9ef2cf8c1c091520d653ab5013b7090b4fde (patch) | |
tree | 514ed6a42ce36c5e88c7d42ec9bff61f4bee6173 /perl/perl-Curses-UI | |
parent | d6d90174ec3f280fd6c7b52b7951fbce88508f30 (diff) |
perl/perl-Curses-UI: Allow VERSION override, i486=>i586, shebang.
Signed-off-by: B. Watson <yalhcru@gmail.com>
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
Diffstat (limited to 'perl/perl-Curses-UI')
-rw-r--r-- | perl/perl-Curses-UI/perl-Curses-UI.SlackBuild | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/perl/perl-Curses-UI/perl-Curses-UI.SlackBuild b/perl/perl-Curses-UI/perl-Curses-UI.SlackBuild index acc563752ea6..37cd96217468 100644 --- a/perl/perl-Curses-UI/perl-Curses-UI.SlackBuild +++ b/perl/perl-Curses-UI/perl-Curses-UI.SlackBuild @@ -1,4 +1,4 @@ -#!/bin/sh -e +#!/bin/sh # Copyright (c) 2010 Daniel LEVAI # All rights reserved. @@ -28,7 +28,7 @@ # Build script for perl-Curses-UI PRGNAM=perl-Curses-UI -VERSION=0.9609 +VERSION=${VERSION:-0.9609} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -36,7 +36,7 @@ SRCNAM=Curses-UI if [ -z "$ARCH" ]; then case "$( uname -m )" in - i?86) ARCH=i486 ;; + i?86) ARCH=i586 ;; arm*) ARCH=arm ;; *) ARCH=$( uname -m ) ;; esac @@ -47,8 +47,8 @@ TMP=${TMP:-/tmp/SBo} PKG=$TMP/package-$PRGNAM OUTPUT=${OUTPUT:-/tmp} -if [ "$ARCH" = "i486" ];then - SLKCFLAGS="-O2 -march=i486 -mtune=i686" +if [ "$ARCH" = "i586" ];then + SLKCFLAGS="-O2 -march=i586 -mtune=i686" LIBDIRSUFFIX="" elif [ "$ARCH" = "i686" ]; then SLKCFLAGS="-O2 -march=i686 -mtune=i686" |