Fix reference to old var name in xenia-build.
Fix reference to old variable name in xenia-build.
This commit is contained in:
parent
dd5ea87213
commit
536f6772da
|
@ -85,7 +85,7 @@ def import_vs_environment():
|
|||
if 'VS140COMNTOOLS' in os.environ:
|
||||
version = 2015
|
||||
vcvars_path = os.environ['VS140COMNTOOLS']
|
||||
vcvars_path = os.path.join(tools_path, '..\\..\\vc\\vcvarsall.bat')
|
||||
vcvars_path = os.path.join(vcvars_path, '..\\..\\vc\\vcvarsall.bat')
|
||||
env_tool_args = [vcvars_path, 'x64', '&&', 'set']
|
||||
else:
|
||||
vsdevcmd_path = os.path.join(install_path, 'Common7\\Tools\\VsDevCmd.bat')
|
||||
|
|
Loading…
Reference in New Issue