summaryrefslogtreecommitdiff
path: root/www-client/firefox/files/firefox-95-fix-fatal-pip-invocation.patch
blob: d39a6e1f72bce8950ef722125c58aa6985f18e6c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/build/mach_initialize.py b/build/mach_initialize.py
index 32f3011..5e6e2b4 100644
--- a/build/mach_initialize.py
+++ b/build/mach_initialize.py
@@ -207,7 +207,7 @@ def _activate_python_environment(topsrcdir):
             else "MACH_USE_SYSTEM_PYTHON"
         )
 
-        has_pip = (
+        has_pip = False and (
             subprocess.run(
                 [sys.executable, "-c", "import pip"], stderr=subprocess.DEVNULL
             ).returncode