diff options
author | B. Watson <yalhcru@gmail.com> | 2017-03-20 04:45:17 -0400 |
---|---|---|
committer | David Spencer <idlemoor@slackbuilds.org> | 2017-03-25 13:26:44 +0000 |
commit | bc3cb4020bcad0b786bf0bc11b324094eb4b91a8 (patch) | |
tree | 3da2ffea30012d72a9f69ec304ef992305c14b5d /libraries | |
parent | e3a14f817f0335125ca7c4cee783fc685e9c45c2 (diff) | |
download | slackbuilds-bc3cb4020bcad0b786bf0bc11b324094eb4b91a8.tar.gz |
libraries/OpenBLAS: Fix shebang, i486=>i586.
Signed-off-by: B. Watson <yalhcru@gmail.com>
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
Diffstat (limited to 'libraries')
-rw-r--r-- | libraries/OpenBLAS/OpenBLAS.SlackBuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libraries/OpenBLAS/OpenBLAS.SlackBuild b/libraries/OpenBLAS/OpenBLAS.SlackBuild index 251f4b3975..6ce57e5509 100644 --- a/libraries/OpenBLAS/OpenBLAS.SlackBuild +++ b/libraries/OpenBLAS/OpenBLAS.SlackBuild @@ -1,4 +1,4 @@ -#!/bin/bash +#!/bin/sh # # Slackware build script for OpenBLAS # Written by Mário Antunes (mariolpantunes@gmail.com) @@ -10,7 +10,7 @@ TAG=${TAG:-_SBo} if [ -z "$ARCH" ]; then case "$( uname -m )" in - i?86) export ARCH=i486 ;; + i?86) export ARCH=i586 ;; arm*) export ARCH=arm ;; *) export ARCH=$( uname -m ) ;; esac |