Merge pull request #6049 from electron/sys-executable

Include sys.executable in build libchromiumcontent args
This commit is contained in:
Cheng Zhao 2016-06-15 01:06:38 +00:00 committed by GitHub
commit e6ba0ac52a

View file

@ -196,7 +196,8 @@ def update_win32_python():
def build_libchromiumcontent(verbose, target_arch, defines):
args = [os.path.join(SOURCE_ROOT, 'script', 'build-libchromiumcontent.py')]
args = [sys.executable,
os.path.join(SOURCE_ROOT, 'script', 'build-libchromiumcontent.py')]
if verbose:
args += ['-v']
if defines: