VeraCrypt
aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMounir IDRASSI <mounir.idrassi@idrix.fr>2024-09-17 17:57:14 +0200
committerMounir IDRASSI <mounir.idrassi@idrix.fr>2024-09-17 17:57:14 +0200
commit866fc8f5137925e684ea855111affe2d71612b88 (patch)
treeed2f68bea1d837a1eea9d14c8591ee08212e8aa0 /src
parent5c485e80b6165da55932a9d08aa5732146b64db2 (diff)
downloadVeraCrypt-866fc8f5137925e684ea855111affe2d71612b88.tar.gz
VeraCrypt-866fc8f5137925e684ea855111affe2d71612b88.zip
macOS: fix regression in build script that caused it to ignore fuset switch
fixed by Mattoje #1417
Diffstat (limited to 'src')
-rwxr-xr-xsrc/Build/build_veracrypt_macosx.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Build/build_veracrypt_macosx.sh b/src/Build/build_veracrypt_macosx.sh
index fa3d02aa..13302442 100755
--- a/src/Build/build_veracrypt_macosx.sh
+++ b/src/Build/build_veracrypt_macosx.sh
@@ -60,7 +60,7 @@ do
esac
done
-export VC_OSX_FUSET=$((fuset ? 1 : 0))
+export VC_OSX_FUSET=$([ "$fuset" = true ] && echo 1 || echo 0)
if [ "$fuset" = true ]; then
echo "Building VeraCrypt with FUSE-T support"