mirror of
https://github.com/veracrypt/VeraCrypt.git
synced 2025-11-11 11:08:02 -06:00
macOS: fix regression in build script that caused it to ignore fuset switch
fixed by Mattoje #1417
This commit is contained in:
@@ -60,7 +60,7 @@ do
|
|||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
|
|
||||||
export VC_OSX_FUSET=$((fuset ? 1 : 0))
|
export VC_OSX_FUSET=$([ "$fuset" = true ] && echo 1 || echo 0)
|
||||||
|
|
||||||
if [ "$fuset" = true ]; then
|
if [ "$fuset" = true ]; then
|
||||||
echo "Building VeraCrypt with FUSE-T support"
|
echo "Building VeraCrypt with FUSE-T support"
|
||||||
|
|||||||
Reference in New Issue
Block a user