diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2022-01-09 01:08:20 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-09 01:08:20 (GMT) |
commit | b962544594c6a7c695330dd20fedffb3a1916ba6 (patch) | |
tree | 7feb3e9d055236fd57a333e966911e6379fb36b3 /configure.ac | |
parent | 987fba102e909229dd2aa1a6115aa28d514c1818 (diff) | |
download | cpython-b962544594c6a7c695330dd20fedffb3a1916ba6.zip cpython-b962544594c6a7c695330dd20fedffb3a1916ba6.tar.gz cpython-b962544594c6a7c695330dd20fedffb3a1916ba6.tar.bz2 |
bpo-34602: Fix unportable test(1) operator in configure script (GH-30490) (GH-30491)
(cherry picked from commit 3d11c1b8b49800c5c4c295953cc3abf577f6065a)
Co-authored-by: Thomas Klausner <tk@giga.or.at>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 9151059..5aa91cb 100644 --- a/configure.ac +++ b/configure.ac @@ -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 |