File tree 2 files changed +15
-2
lines changed
2 files changed +15
-2
lines changed Original file line number Diff line number Diff line change @@ -20268,7 +20268,15 @@ $as_echo_n "checking for ensurepip... " >&6; }
20268
20268
if test "${with_ensurepip+set}" = set; then :
20269
20269
withval=$with_ensurepip;
20270
20270
else
20271
- with_ensurepip=upgrade
20271
+
20272
+ case $ac_sys_system in #(
20273
+ Emscripten) :
20274
+ $with_ensurepip=no ;; #(
20275
+ *) :
20276
+ with_ensurepip=upgrade
20277
+ ;;
20278
+ esac
20279
+
20272
20280
fi
20273
20281
20274
20282
case $with_ensurepip in #(
Original file line number Diff line number Diff line change @@ -5871,7 +5871,12 @@ AC_ARG_WITH(ensurepip,
5871
5871
[ AS_HELP_STRING ( [ --with-ensurepip@<:@ =install|upgrade|no@:>@ ] ,
5872
5872
[ "install" or "upgrade" using bundled pip (default is upgrade)] ) ] ,
5873
5873
[ ] ,
5874
- [ with_ensurepip=upgrade] )
5874
+ [
5875
+ AS_CASE ( [ $ac_sys_system] ,
5876
+ [ Emscripten] , [ $with_ensurepip=no] ,
5877
+ [ with_ensurepip=upgrade]
5878
+ )
5879
+ ] )
5875
5880
AS_CASE ( $with_ensurepip ,
5876
5881
[ yes|upgrade] ,[ ENSUREPIP=upgrade] ,
5877
5882
[ install] ,[ ENSUREPIP=install] ,
You can’t perform that action at this time.
0 commit comments