From: Christian Heimes Date: Wed, 1 Dec 2021 22:16:27 +0000 (+0200) Subject: bpo-40280: Emscripten with_ensurepip=no, second attempt (GH-29884) X-Git-Tag: v3.11.0a3~73 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=309110f37cdfc78d160ed08ae8faa6f6160ba87e;p=thirdparty%2FPython%2Fcpython.git bpo-40280: Emscripten with_ensurepip=no, second attempt (GH-29884) --- diff --git a/configure b/configure index 4dfd4a565d14..0aceffb35065 100755 --- a/configure +++ b/configure @@ -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 38f943fa9d77..99fa94d10290 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] ) ])