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

(cherry picked from commit 3d11c1b8b4)

Co-authored-by: Thomas Klausner <tk@giga.or.at>
This commit is contained in:
Miss Islington (bot) 2022-01-08 17:08:20 -08:00 committed by GitHub
parent 987fba102e
commit b962544594
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

@ -9895,7 +9895,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

@ -2816,7 +2816,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