summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorEli Schwartz <eschwartz93@gmail.com>2024-04-11 23:03:54 (GMT)
committerGitHub <noreply@github.com>2024-04-11 23:03:54 (GMT)
commitfd2bab9d287ef0879568662d4fedeae0a0c61d43 (patch)
treece0288410a688aae7a8252125f0055a96b69dbd3 /configure
parentf268e328ed5d7b2df5bdad39691f6e4789a2fcde (diff)
downloadcpython-fd2bab9d287ef0879568662d4fedeae0a0c61d43.zip
cpython-fd2bab9d287ef0879568662d4fedeae0a0c61d43.tar.gz
cpython-fd2bab9d287ef0879568662d4fedeae0a0c61d43.tar.bz2
gh-117787: Autoconf: fix bashisms/semantic breakage of iOS checks (#117788)
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index f964756..f9c181a 100755
--- a/configure
+++ b/configure
@@ -24334,7 +24334,7 @@ if test "$PY_ENABLE_SHARED" = "1" && ( test -n "$ANDROID_API_LEVEL" || test "$MA
fi
# On iOS the shared libraries must be linked with the Python framework
-if test "$ac_sys_system" == "iOS"; then
+if test "$ac_sys_system" = "iOS"; then
MODULE_DEPS_SHARED="$MODULE_DEPS_SHARED \$(PYTHONFRAMEWORKDIR)/\$(PYTHONFRAMEWORK)"
fi