diff options
Diffstat (limited to 'network/syncthing/syncthing.SlackBuild')
-rw-r--r-- | network/syncthing/syncthing.SlackBuild | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/network/syncthing/syncthing.SlackBuild b/network/syncthing/syncthing.SlackBuild index d50d41836a036..bf31acffcf162 100644 --- a/network/syncthing/syncthing.SlackBuild +++ b/network/syncthing/syncthing.SlackBuild @@ -22,24 +22,24 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=syncthing -VERSION=${VERSION:-0.14.9} +VERSION=${VERSION:-0.14.27} 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 fi -if [ "$ARCH" = "i486" ]; then +if [ "$ARCH" = "i586" ] || [ "$ARCH" = "i686" ]; then FARCH=386 elif [ "$ARCH" = "x86_64" ]; then FARCH=amd64 else - echo "Only i386 and x86_64 architectures are supported..." + echo "$ARCH architecture is not supported." exit 1 fi |