network/tor-browser: Fix build for i586.

Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
Willy Sudiarto Raharjo 2024-04-25 23:41:51 +07:00
parent eaf8abd2cd
commit 6a783bcd48
No known key found for this signature in database
GPG Key ID: 3F617144D7238786
1 changed files with 5 additions and 1 deletions

View File

@ -2,7 +2,7 @@
# Slackware build script for tor-browser
# Copyright 2014-2023 Willy Sudiarto Raharjo <willysr@slackbuilds.org>
# Copyright 2014-2024 Willy Sudiarto Raharjo <willysr@slackbuilds.org>
# All rights reserved.
#
# Redistribution and use of this script, with or without modification, is
@ -44,6 +44,10 @@ if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then
exit 0
fi
if [ $ARCH == "i586" ]; then
ARCH="i686"
fi
TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}