mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-02-21 22:31:48 +01:00
configure: recognize --disable-ub-sanitizer option
There was a typo in the `case` pattern. Now we recognize both forms. Changelog-None
This commit is contained in:
parent
376e2f9997
commit
2d904d3655
1 changed files with 1 additions and 1 deletions
2
configure
vendored
2
configure
vendored
|
@ -281,7 +281,7 @@ for opt in "$@"; do
|
|||
--enable-address-sanitizer) ASAN=1;;
|
||||
--disable-address-sanitizer) ASAN=0;;
|
||||
--enable-ub-sanitizer) UBSAN=1;;
|
||||
--disable-ub-sanitize) UBSAN=0;;
|
||||
--disable-ub-sanitizer|--disable-ub-sanitize) UBSAN=0;;
|
||||
--enable-fuzzing) FUZZING=1;;
|
||||
--disable-fuzzing) FUZZING=0;;
|
||||
--enable-rust) RUST=1;;
|
||||
|
|
Loading…
Add table
Reference in a new issue