mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-02-02 09:41:10 +00:00
ssl-opt.sh: Fix requires_config_value_exactly
Fix comparison bug in requires_config_value_exactly.
This commit is contained in:
parent
c457ab1c2b
commit
13db25fbe9
|
@ -210,7 +210,7 @@ requires_config_value_exactly() {
|
||||||
# Should never happen
|
# Should never happen
|
||||||
echo "Mbed TLS configuration $1 is not defined"
|
echo "Mbed TLS configuration $1 is not defined"
|
||||||
exit 1
|
exit 1
|
||||||
elif [ "$VAL" -eq "$2" ]; then
|
elif [ "$VAL" -ne "$2" ]; then
|
||||||
SKIP_NEXT="YES"
|
SKIP_NEXT="YES"
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue