diff options
author | B. Watson <yalhcru@gmail.com> | 2017-03-20 07:36:43 -0400 |
---|---|---|
committer | David Spencer <idlemoor@slackbuilds.org> | 2017-03-25 13:27:10 +0000 |
commit | d514d75552bb174260309784a13201e407a1ae54 (patch) | |
tree | 57d3f188ad9a3da02c631da2b34db640a3afbf3b /development/dfu-programmer/dfu-programmer.SlackBuild | |
parent | c4079da6188782511b3031cc36703777b3096757 (diff) | |
download | slackbuilds-d514d75552bb174260309784a13201e407a1ae54.tar.gz |
development/dfu-programmer: Fix .info, VERSION overrrride, i586.
Signed-off-by: B. Watson <yalhcru@gmail.com>
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
Diffstat (limited to 'development/dfu-programmer/dfu-programmer.SlackBuild')
-rw-r--r-- | development/dfu-programmer/dfu-programmer.SlackBuild | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/development/dfu-programmer/dfu-programmer.SlackBuild b/development/dfu-programmer/dfu-programmer.SlackBuild index a9db71a39e..8a4d1ef375 100644 --- a/development/dfu-programmer/dfu-programmer.SlackBuild +++ b/development/dfu-programmer/dfu-programmer.SlackBuild @@ -4,13 +4,13 @@ # Written by Andrzej Telszewski <atelszewski@gmail.com> PRGNAM=dfu-programmer -VERSION=0.5.4 +VERSION=${VERSION:-0.5.4} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} if [ -z "$ARCH" ]; then case "$( uname -m )" in - i?86) ARCH=i486 ;; + i?86) ARCH=i586 ;; arm*) ARCH=arm ;; *) ARCH=$( uname -m ) ;; esac @@ -21,8 +21,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" |