summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorThomas Klausner <tk@giga.or.at>2022-01-09 00:54:13 (GMT)
committerGitHub <noreply@github.com>2022-01-09 00:54:13 (GMT)
commit3d11c1b8b49800c5c4c295953cc3abf577f6065a (patch)
tree94993aa653c9cfab9e4b4e263ebb2c01bbb0784f /configure
parent0fc58c1e051026baff4919d8519ce2aabe3b2ba1 (diff)
downloadcpython-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-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 9e7090c..9712446 100755
--- a/configure
+++ b/configure
@@ -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