diff options
author | Christian Heimes <christian@python.org> | 2022-06-20 11:34:40 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-20 11:34:40 (GMT) |
commit | 774ef28814d0d9d57ec813cb31b0a7af6c476127 (patch) | |
tree | b14188c8f6e7a6a789f6f4c2e8f63b5c0e01808b /configure | |
parent | affa9f22cfd1e83a5fb413e5ce2feef9ea1a49ac (diff) | |
download | cpython-774ef28814d0d9d57ec813cb31b0a7af6c476127.zip cpython-774ef28814d0d9d57ec813cb31b0a7af6c476127.tar.gz cpython-774ef28814d0d9d57ec813cb31b0a7af6c476127.tar.bz2 |
gh-84461: Silence some compiler warnings on WASM (GH-93978)
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -24652,7 +24652,7 @@ $as_echo_n "checking for stdlib extension module _ctypes_test... " >&6; } if test "$py_cv_module__ctypes_test" != "n/a"; then : if test "$TEST_MODULES" = yes; then : - if true; then : + if test "$ac_cv_func_dlopen" = yes; then : py_cv_module__ctypes_test=yes else py_cv_module__ctypes_test=missing |