diff options
author | B. Watson <yalhcru@gmail.com> | 2017-03-21 02:55:03 -0400 |
---|---|---|
committer | David Spencer <idlemoor@slackbuilds.org> | 2017-03-25 13:28:19 +0000 |
commit | 0efb7d4b58ab8938f20f6c0c46cd243733d8b903 (patch) | |
tree | f6a2482e4e9eef89271ecbf8d348497a8fa81183 /multimedia | |
parent | 2d608e2a259b5ed6eea238f224cfc96b1c4d7176 (diff) | |
download | slackbuilds-0efb7d4b58ab8938f20f6c0c46cd243733d8b903.tar.gz |
multimedia/ccxstream: Allow VERSION override, i486=>i586.
Signed-off-by: B. Watson <yalhcru@gmail.com>
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
Diffstat (limited to 'multimedia')
-rw-r--r-- | multimedia/ccxstream/ccxstream.SlackBuild | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/multimedia/ccxstream/ccxstream.SlackBuild b/multimedia/ccxstream/ccxstream.SlackBuild index c877582fd1..812e665b16 100644 --- a/multimedia/ccxstream/ccxstream.SlackBuild +++ b/multimedia/ccxstream/ccxstream.SlackBuild @@ -23,7 +23,7 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=ccxstream -VERSION=1.0.15 +VERSION=${VERSION:-1.0.15} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -34,14 +34,14 @@ OUTPUT=${OUTPUT:-/tmp} if [ -z "$ARCH" ]; then case "$( uname -m )" in - i?86) ARCH=i486 ;; + i?86) ARCH=i586 ;; arm*) ARCH=arm ;; *) ARCH=$( uname -m ) ;; esac fi -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" |