mirror of
https://github.com/ARMmbed/mbedtls.git
synced 2025-06-29 02:19:17 +08: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
|
||||
echo "Mbed TLS configuration $1 is not defined"
|
||||
exit 1
|
||||
elif [ "$VAL" -eq "$2" ]; then
|
||||
elif [ "$VAL" -ne "$2" ]; then
|
||||
SKIP_NEXT="YES"
|
||||
fi
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user