bpo-46308: Fix unportable test(1) operator in configure script (GH-30490)

This commit is contained in:
Thomas Klausner 2022-01-09 01:54:13 +01:00 committed by GitHub
parent 0fc58c1e05
commit 3d11c1b8b4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

2
configure vendored
View file

@ -10315,7 +10315,7 @@ then
# small for the default recursion limit. Increase the stack size
# to ensure that tests don't crash
stack_size="1000000" # 16 MB
if test "$with_ubsan" == "yes"
if test "$with_ubsan" = "yes"
then
# Undefined behavior sanitizer requires an even deeper stack
stack_size="4000000" # 64 MB

View file

@ -2861,7 +2861,7 @@ then
# small for the default recursion limit. Increase the stack size
# to ensure that tests don't crash
stack_size="1000000" # 16 MB
if test "$with_ubsan" == "yes"
if test "$with_ubsan" = "yes"
then
# Undefined behavior sanitizer requires an even deeper stack
stack_size="4000000" # 64 MB