diff options
author | Eli Schwartz <eschwartz93@gmail.com> | 2024-04-11 23:03:54 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-11 23:03:54 (GMT) |
commit | fd2bab9d287ef0879568662d4fedeae0a0c61d43 (patch) | |
tree | ce0288410a688aae7a8252125f0055a96b69dbd3 /configure.ac | |
parent | f268e328ed5d7b2df5bdad39691f6e4789a2fcde (diff) | |
download | cpython-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.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index e195e15..47c084d 100644 --- a/configure.ac +++ b/configure.ac @@ -6053,7 +6053,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 |