diff options
author | Christian Heimes <christian@python.org> | 2022-01-12 19:27:37 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-12 19:27:37 (GMT) |
commit | e34c9367f8e0068ca4bcad9fb5c2c1024d02a77d (patch) | |
tree | 652196b8d16c2478fda8c0b232179ebb62a4b6f6 /configure | |
parent | fc05e6bfce5d5dfc23859e6f7862c1e707a12e42 (diff) | |
download | cpython-e34c9367f8e0068ca4bcad9fb5c2c1024d02a77d.zip cpython-e34c9367f8e0068ca4bcad9fb5c2c1024d02a77d.tar.gz cpython-e34c9367f8e0068ca4bcad9fb5c2c1024d02a77d.tar.bz2 |
bpo-40280: Allow to compile _testcapi as builtin module (GH-30559)
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -21258,8 +21258,8 @@ fi if test "$enable_test_modules" = no; then TEST_MODULES=no else - case $ac_sys_system in #( - Emscripten) : + case $ac_sys_system/$ac_sys_emscripten_target in #( + Emscripten/browser) : TEST_MODULES=no ;; #( *) : TEST_MODULES=yes |