mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 987984 - VirtualenvManager.call_setup() should use self.python_path instead of sys.executable, r=gps
This commit is contained in:
parent
ea04c8594f
commit
72fdff8026
@ -343,7 +343,7 @@ class VirtualenvManager(object):
|
|||||||
"""Calls setup.py in a directory."""
|
"""Calls setup.py in a directory."""
|
||||||
setup = os.path.join(directory, 'setup.py')
|
setup = os.path.join(directory, 'setup.py')
|
||||||
|
|
||||||
program = [sys.executable, setup]
|
program = [self.python_path, setup]
|
||||||
program.extend(arguments)
|
program.extend(arguments)
|
||||||
|
|
||||||
# We probably could call the contents of this file inside the context
|
# We probably could call the contents of this file inside the context
|
||||||
|
Loading…
Reference in New Issue
Block a user