mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-01-08 12:22:34 +00:00
Bug 987984 - VirtualenvManager.call_setup() should use self.python_path instead of sys.executable, r=gps
This commit is contained in:
parent
49433cb15f
commit
58c21ea944
@ -343,7 +343,7 @@ class VirtualenvManager(object):
|
||||
"""Calls setup.py in a directory."""
|
||||
setup = os.path.join(directory, 'setup.py')
|
||||
|
||||
program = [sys.executable, setup]
|
||||
program = [self.python_path, setup]
|
||||
program.extend(arguments)
|
||||
|
||||
# We probably could call the contents of this file inside the context
|
||||
|
Loading…
Reference in New Issue
Block a user