Skip to content

Commit

Permalink
configure: recognize --disable-ub-sanitizer option
Browse files Browse the repository at this point in the history
There was a typo in the `case` pattern. Now we recognize both forms.

Changelog-None
  • Loading branch information
whitslack authored and rustyrussell committed Sep 25, 2023
1 parent 376e2f9 commit 2d904d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configure
Original file line number Diff line number Diff line change
Expand Up @@ -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;;
Expand Down

0 comments on commit 2d904d3

Please sign in to comment.