diff options
author | Christian Heimes <christian@python.org> | 2021-12-01 22:16:27 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-01 22:16:27 (GMT) |
commit | 309110f37cdfc78d160ed08ae8faa6f6160ba87e (patch) | |
tree | b237dc5111dec8986943163cdf738c2370e67bff | |
parent | 9deb83468c56c7484645e6e3a6d0183cd6a0afd7 (diff) | |
download | cpython-309110f37cdfc78d160ed08ae8faa6f6160ba87e.zip cpython-309110f37cdfc78d160ed08ae8faa6f6160ba87e.tar.gz cpython-309110f37cdfc78d160ed08ae8faa6f6160ba87e.tar.bz2 |
bpo-40280: Emscripten with_ensurepip=no, second attempt (GH-29884)
-rwxr-xr-x | configure | 2 | ||||
-rw-r--r-- | configure.ac | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -20271,7 +20271,7 @@ else case $ac_sys_system in #( Emscripten) : - $with_ensurepip=no ;; #( + with_ensurepip=no ;; #( *) : with_ensurepip=upgrade ;; diff --git a/configure.ac b/configure.ac index 38f943f..99fa94d 100644 --- a/configure.ac +++ b/configure.ac @@ -5873,7 +5873,7 @@ AC_ARG_WITH(ensurepip, [], [ AS_CASE([$ac_sys_system], - [Emscripten], [$with_ensurepip=no], + [Emscripten], [with_ensurepip=no], [with_ensurepip=upgrade] ) ]) |