[Python-checkins] bpo-40280: Emscripten with_ensurepip=no, second attempt (GH-29884)

tiran webhook-mailer at python.org
Wed Dec 1 17:16:36 EST 2021


https://github.com/python/cpython/commit/309110f37cdfc78d160ed08ae8faa6f6160ba87e
commit: 309110f37cdfc78d160ed08ae8faa6f6160ba87e
branch: main
author: Christian Heimes <christian at python.org>
committer: tiran <christian at python.org>
date: 2021-12-01T23:16:27+01:00
summary:

bpo-40280: Emscripten with_ensurepip=no, second attempt (GH-29884)

files:
M configure
M configure.ac

diff --git a/configure b/configure
index 4dfd4a565d14e..0aceffb35065a 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 38f943fa9d77c..99fa94d102909 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]
       )
     ])



More information about the Python-checkins mailing list