Chromium Code Reviews| Index: pylib/gyp/msvs_emulation.py |
| diff --git a/pylib/gyp/msvs_emulation.py b/pylib/gyp/msvs_emulation.py |
| index 9b65e21dd837e6a7b820af428e391ac3e8097310..2d7f7af91f046ac7f01f254003885939c08f2ce7 100644 |
| --- a/pylib/gyp/msvs_emulation.py |
| +++ b/pylib/gyp/msvs_emulation.py |
| @@ -154,7 +154,7 @@ class MsvsSettings(object): |
| equivalents.""" |
| replacements = { |
| '$(VSInstallDir)': self.vs_version.Path(), |
| - '$(VCInstallDir)': os.path.join(self.vs_version.Path(), 'VC'), |
| + '$(VCInstallDir)': os.path.join(self.vs_version.Path(), 'VC') + "\\", |
|
Nico
2012/05/03 22:28:09
nit: ' not ", for local consistency
scottmg
2012/05/03 22:41:36
Done.
5 non-space characters, and I get 40% of th
|
| '$(OutDir)\\': base_to_build + '\\' if base_to_build else '', |
| '$(IntDir)': '$!INTERMEDIATE_DIR', |
| '$(InputPath)': '${source}', |