https://github.com/python/cpython/commit/fd2bab9d287ef0879568662d4fedeae0a0c61d43 commit: fd2bab9d287ef0879568662d4fedeae0a0c61d43 branch: main author: Eli Schwartz <[email protected]> committer: erlend-aasland <[email protected]> date: 2024-04-12T01:03:54+02:00 summary:
gh-117787: Autoconf: fix bashisms/semantic breakage of iOS checks (#117788) files: M configure M configure.ac diff --git a/configure b/configure index f9647566636e4c..f9c181ac3805e1 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 diff --git a/configure.ac b/configure.ac index e195e15b39ed21..47c084d92a30e8 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 _______________________________________________ Python-checkins mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3/lists/python-checkins.python.org/ Member address: [email protected]
