From 1c1f7cae7fee199ce0801271a9b7d113a440cbb0 Mon Sep 17 00:00:00 2001 From: "scottmg@chromium.org" Date: Thu, 4 Jun 2015 14:08:56 +0000 Subject: [PATCH] Fix System32 vs Sysnative for x86 python BUG=495944 R=sebmarchand@chromium.org Review URL: https://codereview.chromium.org/1162003009 git-svn-id: svn://svn.chromium.org/chrome/trunk/tools/depot_tools@295527 0039d316-1c4b-4281-b951-d872f2087c98 --- win_toolchain/package_from_installed.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/win_toolchain/package_from_installed.py b/win_toolchain/package_from_installed.py index f9d5502b7..7f065b691 100644 --- a/win_toolchain/package_from_installed.py +++ b/win_toolchain/package_from_installed.py @@ -155,7 +155,7 @@ def BuildFileList(): for system_crt_file in system_crt_files: result.append((os.path.join(r'C:\Windows\SysWOW64', system_crt_file), os.path.join('sys32', system_crt_file))) - result.append((os.path.join(r'C:\Windows\System32', system_crt_file), + result.append((os.path.join(r'C:\Windows\Sysnative', system_crt_file), os.path.join('sys64', system_crt_file))) # Generically drop all arm stuff that we don't need.