diff options
author | Thomas Klausner <tk@giga.or.at> | 2022-01-09 00:54:13 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-09 00:54:13 (GMT) |
commit | 3d11c1b8b49800c5c4c295953cc3abf577f6065a (patch) | |
tree | 94993aa653c9cfab9e4b4e263ebb2c01bbb0784f /configure | |
parent | 0fc58c1e051026baff4919d8519ce2aabe3b2ba1 (diff) | |
download | cpython-3d11c1b8b49800c5c4c295953cc3abf577f6065a.zip cpython-3d11c1b8b49800c5c4c295953cc3abf577f6065a.tar.gz cpython-3d11c1b8b49800c5c4c295953cc3abf577f6065a.tar.bz2 |
bpo-46308: Fix unportable test(1) operator in configure script (GH-30490)
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |