macOS: fix regression in build script that caused it to ignore fuset switch

fixed by Mattoje #1417
This commit is contained in:
Mounir IDRASSI 2024-09-17 17:57:14 +02:00
parent 5c485e80b6
commit 866fc8f513
No known key found for this signature in database
GPG Key ID: FC1B00364B3FE937

View File

@ -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"