diff options
author | B. Watson <yalhcru@gmail.com> | 2017-03-20 23:28:06 -0400 |
---|---|---|
committer | David Spencer <idlemoor@slackbuilds.org> | 2017-03-25 13:27:58 +0000 |
commit | 82cec899fecd3fa6b6243efbf73ea011714df56f (patch) | |
tree | 9ab66685f81b16d109906b058e5a708273f2199b /audio/swh-plugins | |
parent | bbcb057c292f380f12e15b3a5555bbcb030bf206 (diff) | |
download | slackbuilds-82cec899fecd3fa6b6243efbf73ea011714df56f.tar.gz |
audio/swh-plugins: Allow VERSION override, i486=>i586.
Signed-off-by: B. Watson <yalhcru@gmail.com>
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
Diffstat (limited to 'audio/swh-plugins')
-rw-r--r-- | audio/swh-plugins/swh-plugins.SlackBuild | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/audio/swh-plugins/swh-plugins.SlackBuild b/audio/swh-plugins/swh-plugins.SlackBuild index 2b068f8c76..6f0627e5d4 100644 --- a/audio/swh-plugins/swh-plugins.SlackBuild +++ b/audio/swh-plugins/swh-plugins.SlackBuild @@ -23,13 +23,13 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=swh-plugins -VERSION=0.4.15 +VERSION=${VERSION:-0.4.15} 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 @@ -44,8 +44,8 @@ OUTPUT=${OUTPUT:-/tmp} WITH_SSE=${WITH_SSE:-yes} WITH_3DNOW=${WITH_3DNOW:-no} -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" |