aboutsummaryrefslogtreecommitdiffstats
path: root/python/mach_bootstrap.py
diff options
context:
space:
mode:
authorMatthew Young <mabufo@gmail.com>2018-06-06 12:51:43 -0500
committerMatthew Young <mabufo@gmail.com>2018-06-06 12:51:43 -0500
commit9b906689156cf9ab9ba837f3ad04dbbba1cc1e28 (patch)
tree3bccba662332d15fc82e8fce3e83063c5d117343 /python/mach_bootstrap.py
parenta07c71889524f947fb39bcb65baf135bd2a04d0d (diff)
downloadservo-9b906689156cf9ab9ba837f3ad04dbbba1cc1e28.tar.gz
servo-9b906689156cf9ab9ba837f3ad04dbbba1cc1e28.zip
Fix for pip invocation when setting up virtual environment during build
Diffstat (limited to 'python/mach_bootstrap.py')
-rw-r--r--python/mach_bootstrap.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/mach_bootstrap.py b/python/mach_bootstrap.py
index dfc52d4b1dc..7b32c8c69c0 100644
--- a/python/mach_bootstrap.py
+++ b/python/mach_bootstrap.py
@@ -221,7 +221,7 @@ def _activate_virtualenv(topdir, is_firefox):
if not pip:
sys.exit("Python pip is either not installed or not found in virtualenv.")
- _process_exec([pip, "install", "-I", "-r", req_path])
+ _process_exec([python, "-m", "pip", "install", "-I", "-r", req_path])
open(marker_path, 'w').close()