| Index: build/vs_toolchain.py
|
| diff --git a/build/vs_toolchain.py b/build/vs_toolchain.py
|
| index aa4fec2d1282f6b10aec944417b2d4139e62759d..b039ed01c6493d6ba62f9c8ff2e09786fbc44b5a 100644
|
| --- a/build/vs_toolchain.py
|
| +++ b/build/vs_toolchain.py
|
| @@ -129,7 +129,8 @@ def CopyVsRuntimeDlls(output_dir, runtime_dirs):
|
| def _GetDesiredVsToolchainHashes():
|
| """Load a list of SHA1s corresponding to the toolchains that we want installed
|
| to build with."""
|
| - sha1path = os.path.join(script_dir, 'toolchain_vs2013.hash')
|
| + sha1path = os.path.join(script_dir,
|
| + '..', 'buildtools', 'toolchain_vs2013.hash')
|
| with open(sha1path, 'rb') as f:
|
| return f.read().strip().splitlines()
|
|
|
|
|